I have an application that accesses a script on my server. I pass quite a long query string with my url. The length will change every so often but is always rather long.
Is there a limit to the length of the url or query string? Should I be sending the query string parameters in post - will that give me more length?
Important information:
- The server is Linux
- The application code is Pythonand usesurllib2to access the script
- The script on the server is a Pythonscript
Code used to access script:
urllib2.urlopen( "www.site.com?verylongquerystring" )
 
     
    