Hi there,
I'm using HTTP POST to call a cgi script on a web server and send along some data as arguments. Some of the arguments can contain quite a bit of data. This seems to be a problem for the web server and I am getting error 414 (Request URI too long) as a result.
My URI ends up looking something like this: http://somewebsite.com/cgi-bin/dosomething.py?function=doitnow&data=this is a lot of data and the server is going to complain...
Is there a different way for me to call a cgi script on a web server and pass it a long string?
Thanks.