My Qooxdoo apps use POST Method. But always got error 414 Request-URI Too Large. i was check it and know that URL Lenght is about 4018 characters. And most if them is parameter.
How to POST Method whithout showing parameter in URL?
Thank you
My Qooxdoo apps use POST Method. But always got error 414 Request-URI Too Large. i was check it and know that URL Lenght is about 4018 characters. And most if them is parameter.
How to POST Method whithout showing parameter in URL?
Thank you
Thank you.. it's Fixed.
By default qooxdoo displayed all parameters at URL. To set it off, just add at third element of setParameter's Method to =true, cause by default it was set false.
example: req.setParameter(vId, value, true);
Thank you...