Is it browser dependent? Also, do different web stacks have different limits on how much data they can get from the request?
|
|
According to Boutell.com: WWW FAQs: What is the maximum length of a URL?
|
||||
|
|
|
< 2 cents> If you have to ask, you're probably doing something wrong. < /2 cents> There are two possibilities here:
A URL is like an address to something, it's not the best way to pass information to something. A POST request is much more appropriate, if it can be used. |
|||||||||||||||||
|
|
I'm assuming you mean max length for a uri string. This may help. Typically once URI's get unreadable because they are too long, it's time to use a POST request instead. |
|||||||||||||||||||||
|
|
It depends on what software/hardware the request is going through. I would simply test it on the target environment to find out. |
|||
|
|
|
Different web stacks do support different lengths of http-requests. I know from experience that the early stacks of Safari only supported 4000 characters and thus had difficulty handling ASP.net pages because of the USER-STATE. This is even for POST, so you would have to check the browser and see what the stack limit is. I think that you may reach a limit even on newer browsers. I cannot remember but one of them (IE6, I think) had a limit of 16-bit limit, 32,768 or something. |
|||
|
|
|
In case you want to be well-ranked in Google you should be aware of the fact that Google only indexes the first 7 words in any url after the domain name. Extremenly long URLs may be penalized. As a workaround you could use a service like tinyurl.com or implement a shortening scheme yourself. For example many PHP boards use a search like this:
|
|||
|
|