Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
when i trying to run some application that time i get "414.that's an error.the requested URL/.....is too large to process.that's all we know".

please give me suggestion on this error.
Posted

As mentioned in the first answer, check your URL length.
Although there is no fixed length for a URL, browsers have there own limitations.
Here[^] is an article that discusses URL length limits.
 
Share this answer
 
Comments
Espen Harlinn 27-Jun-12 19:02pm    
Interesting :-D
This is an excerpt from RFC 2616 (Hypertext Transfer Protocol HTTP/1.1)[^], section 3.2.1:

Quote:
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


So your URL must have exceeded the length the server can handle. Check out it's length.
 
Share this answer
 
Comments
Espen Harlinn 27-Jun-12 19:01pm    
Good answer :-D

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900