You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "forumbyr (JIRA)" <ji...@apache.org> on 2013/12/06 06:29:35 UTC

[jira] [Commented] (CXF-2993) @Context HttpServletRequest does not contain POST data. It's however is in MultivaluedMap .

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

forumbyr commented on CXF-2993:
-------------------------------

still consumes the post data,the bug also exist.

> @Context HttpServletRequest does not contain POST data.  It's however is in MultivaluedMap<String, String> .
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-2993
>                 URL: https://issues.apache.org/jira/browse/CXF-2993
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-RS
>    Affects Versions: 2.2.9, 2.2.10
>         Environment: Dev
>            Reporter: John Tran
>
> I try to use @Context HttpServletRequest from my JAX-RS method to retrieve POST data but it's not there.  It's however is in MultivaluedMap<String, String> parameterMap
> Here is the code.
> @Resource
> @Path("/rating")
> public class RatingRs {
>   @Path("/create")
>   @POST
>   @Consumes("application/x-www-form-urlencoded")
>   @Produces("application/json")
>   public void createRating( @Context HttpServletRequest requestObject, @Context HttpServletResponse response, MultivaluedMap<String, String> parameterMap){
>  
>   Map map = requestObject.getParameterMap();  //THIS RETURNS EMPTY, WHY? SHOULD CONTAIN "itemId"="blah"
>    String itemId = requestObject.getParameter("itemId");  //returns null SHOULD NOT BE NULL
>    List values = parameterMap.get("itemId");  //RETURNS THE CORRECT VALUE HERE.
>   }
> }



--
This message was sent by Atlassian JIRA
(v6.1#6144)