-
Bug
-
Resolution: Done
-
Major
-
1.4.6.Final
-
None
It seems that undertow is not passing "form parameters" to servlets when PUT method is in use. It is a kind odd because you can create a resource using POST methd but you cannot update the same resource using PUT method.
I have been using wildfly 10.x and just after migrated a code base that was in a jetty-6.1.x I faced this situation: requests using PUT method stopped to work because request "form parameters" never reach servlests endpoints.
For example:
This code was working on jetty-6.1.x and printing the parameter, but stopped to work on wildfly 10.1.0.Final.
@Override public void doPut(HttpServletRequest request, HttpServletResponse response) throws IOException { System.out.println("Put parmameter: "+request.getParameter("test")); }
- is related to
-
JBEAP-16927 [GSS](7.2.z) UNDERTOW-1542 - Undertow doesn't extract request parameters if PUT method is being called
- Closed