Error during sequence diagram: The requested URL's length exceeds the capacity limit for this server.

0 votes
asked Sep 2, 2020 in Question / help by cady

Getting error during  generation of sequence diagram:

Error: The requested URL's length exceeds the capacity limit for this server.

I am using text file of 252 KB to generate sequence diagram.

Is there any size restriction of input file?

1 Answer

0 votes
answered Feb 18, 2021 by geraldwarp (140 points)

This problem might be caused by the Apache limits the set a size of a client’s HTTP request-line  and the HTTP request header field size.  Extremely long URLs are usually a mistake. If you keep URLs under 2000 characters , they'll work in virtually any combination of client and server software. URI actually have a character limit depending on several things. Chrome limits url length of 2MB for practical reasons and to avoid causing denial-of-service problems in inter-process communication. On most platforms, Chrome's omnibox limits URL display to 32kB ( kMaxURLDisplayChars ) although a 1kB limit is used on VR platforms. IE - 2083 characters, Firefox - 2047 characters, Safari 80000 characters and Opera 190,000 characters.

To resolve the problem :

  • By POST request: Convert query string to json object and sent to API request with POST
  • By GET request: Max length of request is depend on sever side as well as client side. Most webserver have limit 8k which is configurable. On the client side the different browser has different limit. The browser IE and Safari limit to 2k, Opera 4k and Firefox 8k. means the max length for the GET request is 8k and min request length is 2k.

If exceed the request max length then the request truncated outside the limit by web server or browser without any warning. Some server truncated request data but the some server reject it because of data lose and they will return with response code 414.

...