in reply to 414 Request-URI Too Large
The other rare, but still more common, instance occurs when generating a get request which has too many characters for a geniune URL (typically 2048 to 4096 bytes). This means switching back to a post from a get. I see that you state that you are using a post method, so I would examine the raw HTTP headers to verify that your client isn't erroneously sending the request via the get method. Stranger things have been known to happen.
Also, I don't know how to find this in Apache, but if you could find out the max length of requests and how to set this, it may help. CGI.pm can also throw an error if you exceed maximum post length, but I believe that it's just a simple die message and doesn't generate a 414. Probably generates a 5xx status code on the die.
Cheers,
Ovid
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: (Ovid) Re: 414 Request-URI Too Large
by merlyn (Sage) on Aug 31, 2000 at 19:16 UTC | |
by didierbdx (Initiate) on Aug 26, 2008 at 14:05 UTC | |
|
RE: (Ovid) Re: 414 Request-URI Too Large
by spudzeppelin (Pilgrim) on Aug 31, 2000 at 19:29 UTC | |
by Anonymous Monk on Nov 01, 2008 at 11:51 UTC |