Re: What is the maximum length of a URL, including...
Posted By:
Mohammad_Masroor
Posted On:
Wednesday, March 14, 2001 02:50 PM
It Actually depends on the Web-Server Settings,but by default i think it is of 255 bytes in case of Get method.
Re: What is the maximum length of a URL, including...
Posted By:
Nisha_Kripalani
Posted On:
Wednesday, March 14, 2001 01:19 PM
I have read in the Java Servlet Programming book by Jason Hunter that the max length of URL's including query strings for Get requests is 240 characters.
Re: What is the maximum length of a URL, including...
Posted By:
Subrahmanian_Kumaraswamy
Posted On:
Tuesday, March 13, 2001 10:38 PM
The maximum length of a URL including get parameters in 2000 characters
Re: What is the maximum length of a URL, including...
Posted By:
Nagaraju_Venkata
Posted On:
Tuesday, March 13, 2001 08:17 PM
This depends upon the particular server you are using. Generally The maximum length of URL including GET parameters is 240.
Re: What is the maximum length of a URL, including...
Posted By:
Manish_Parmar
Posted On:
Friday, March 9, 2001 09:27 PM
It's very server-dependant. Check Server documentation.
Please see 3.2.1 General Syntax section of
ftp://ftp.isi.edu/in-notes/rfc2616.txt.
The HTTP protocol does not place any a priori limit on the length of a URI. Servers MUST be able to handle the URI of any resource they serve, and SHOULD be able to handle URIs of unbounded length if they provide GET-based forms that could generate such URIs. A server SHOULD return 414 (Request-URI Too Long) status if a URI is longer than the server can handle (see section 10.4.15).
Note: Servers ought to be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations might not properly support these lengths.
Manish
Re: What is the maximum length of a URL, including...
Posted By:
JP_Moresmau
Posted On:
Friday, March 9, 2001 02:45 PM
The HTTP 1.1 specification is clear: there should be no limit on the length of a URL. However, it recommends caution when dealing with URL above 255 bytes, since older implementation might have problems...
JP
Re: What is the maximum length of a URL, including...
Posted By:
d_kumar
Posted On:
Thursday, March 8, 2001 01:37 AM
using get method you can pass parameter up to 2k. some place I found there is no limitation.