-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POST parameters not recognized #11
Comments
add this will work |
I have exactly the same problem. Installed it just via web.xml. Posting results in empty stringParams, and server errrors. @jiming seems to have a solution, but I don't get it. What's the gist of that? I don't have a FilterRegistrationBean. |
Had same issue on jetty, it's own |
There are many differents ways [0],[1],[2] to cause restlet some problems parsing the POST form. This change introduces a fallback to get the paramters anyway. Fixes issue lbovet#11 [0] https://stackoverflow.com/questions/72102206/wildfly-26-changed-behaviour-of-rest-with-content-type-x-www-form-urlencoded [1] https://stackoverflow.com/questions/9985892/restlet-appears-to-be-doubly-decoding-my-form-parameters/11949673#11949673 [2] restlet/restlet-framework-java#1345
There are many differents ways [0],[1],[2] to cause restlet some problems parsing the POST form. This change introduces a fallback to get the paramters anyway. Fixes issue lbovet#11 [0] https://stackoverflow.com/questions/72102206/wildfly-26-changed-behaviour-of-rest-with-content-type-x-www-form-urlencoded [1] https://stackoverflow.com/questions/9985892/restlet-appears-to-be-doubly-decoding-my-form-parameters/11949673#11949673 [2] restlet/restlet-framework-java#1345
There are many differents ways [0],[1],[2] to cause restlet some problems parsing the POST form. This change introduces a fallback to get the paramters anyway. Fixes issue lbovet#11 [0] https://stackoverflow.com/questions/72102206/wildfly-26-changed-behaviour-of-rest-with-content-type-x-www-form-urlencoded [1] https://stackoverflow.com/questions/9985892/restlet-appears-to-be-doubly-decoding-my-form-parameters/11949673#11949673 [2] restlet/restlet-framework-java#1345
There are many differents ways [0],[1],[2] to cause restlet some problems parsing the POST form. This change introduces a fallback to get the paramters anyway. Fixes issue #11 [0] https://stackoverflow.com/questions/72102206/wildfly-26-changed-behaviour-of-rest-with-content-type-x-www-form-urlencoded [1] https://stackoverflow.com/questions/9985892/restlet-appears-to-be-doubly-decoding-my-form-parameters/11949673#11949673 [2] restlet/restlet-framework-java#1345
Fixed by #19 |
I deployed the console embedded and I face the problem that I cannot send commands (operations in language of jmx).
Debugging shows, that
stringParams
here https://github.com/lbovet/jminix/blob/master/src/main/java/org/jminix/console/resource/OperationResource.java#L79 has no value.The params are available though. The console is working right with the following patch
I try to find out if I have a problem with my configuration, but without success. Does anyone has a hint what the problem could be?
Cheers
Stefku
My configuration for spring boot
The text was updated successfully, but these errors were encountered: