What is the limit on QueryString / post/ URL parameters?
Is there any limitation on sending url parameters in post method?
Thanks in advance.
Is there any limitation on sending url parameters in post method?
Thanks in advance.
Chandra, I'm afraid that I have no idea what you just said.
URL parameters, as far as I know, are not encrypted even in an HTTPS exchange, because they are considered part of the URL, not part of the message. The body of the message (i.e. POST), on the other hand, is.protected.
I would suggest that you send the request parameters in JSON format, just as you might do with AJAX. This is a well-designed and well-understood protocol with good support on both the client and the server side. (XML is also the same.) This will put the exchange of information within the (encrypted) message body, and it also will permit you to send and to receive structured information ... structs and lists and arrays and so-on.
You still need to be mindful of message sizes, but not nearly so much as with the URL-string.
Any time that you feel you might be "pushing a limit," it's time to assume that "there must be a better way to do this."
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.