[ 
https://issues.apache.org/jira/browse/CXF-2154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12700997#action_12700997
 ] 

Chris Westin commented on CXF-2154:
-----------------------------------

Hello, I'm seeing something similar.  I'm not using MultivaluedMap.  I have an 
example that's pretty much the same as the one as the one with the OrderBean on 
this page:  
http://cwiki.apache.org/CXF20DOC/jax-rs.html#JAX-RS-ConfiguringJAXBprovider .

I'm also finding that the form parameters never make it to my code.  I've tried 
calling via command-line curl and by using HttpClient PostMethod.

Don't think I have any config problems because I have another method that has 
@POST @Consumes("application/xml") into the same object (annotated with 
@XmlElement for JAXB) and that one works.  So, I can POST an XML document, but 
I can't POST application/x-www-form-urlencoded parameters.

> Cannot get Form values from MultivaluedMap
> ------------------------------------------
>
>                 Key: CXF-2154
>                 URL: https://issues.apache.org/jira/browse/CXF-2154
>             Project: CXF
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 2.2
>         Environment: Windows XP Java 1.6 tomcat
>            Reporter: David people
>
> Hi,
>    I'm trying to get All the form fields from a a form which is posted to the 
> restful web service.
>     <form method="POST" 
> action="http://localhost:8080/webapp/webservice/customerservice/temp"; >
>              <input type="text" value="hello" name="param1"/>
>              <input type="text" value="hfsello" name="param2"/>
>              <input type="submit"/>
>     </form>
> I have the following method
> @POST
> @Path("/temp")
> @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
> public String temp(MultivaluedMap<String, String> params){
>      System.out.println("Params = "+params);
>      return "<done>"+params+"</done>";
> }
> The output is always empty, the size of the params object is zero.
> The very same method used to work in a previous version of CXF.
> Is there a new way to use MultivaluedMap?
> Thanks...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to