#1 Doesn't fit with MessageBodyReader/Writer pattern
#2  Encourages RPC designs.  We're supposed to be doing REST which is 
message-based.

On 8/29/2012 9:17 AM, Chris Bredesen wrote:
> I haven't thought it through fully but this seems like a very handy
> feature. Here's where someone shows why it won't/can't work...
>
> -CB
>
> On 08/29/2012 08:49 AM, Bill Burke wrote:
>> You can only have one argument to a method that represents the HTTP
>> message body.
>>
>> On 8/29/2012 7:37 AM, Reik Schatz wrote:
>>> Hi, I am wondering if the following is possible since I am having some
>>> problems getting it to work. Lets say you have a service method:
>>>
>>> @PUT
>>> @Path("/store")
>>> @Consumes(MediaType.APPLICATION_JSON)
>>> void store(String user, int score);
>>>
>>> and you run the following command:
>>>
>>> curl -i -v -H "Content-Type: application/json" -X PUT -d '{"user": "me",
>>> "score": 10}' http://localhost:8080/store
>>>
>>> I was expecting that the json content is unmarshalled and mapped to the
>>> 2 primitive arguments, which isn't happening. The immediate problem
>>> might however be unrelated. The first Provider that is being used is
>>> called StringTextStar which reads everything from the InputStream, then
>>> when the ResteasyJacksonProvider is ran, there is no more to read and I
>>> receive java.io.EOFException: No content to map to Object due to end of
>>> input, which might be another problem.
>>>
>>> reik
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Live Security Virtual Conference
>>> Exclusive live event will cover all the ways today's security and
>>> threat landscape has changed and how IT managers can respond. Discussions
>>> will include endpoint security, mobile security and the latest in malware
>>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>>>
>>>
>>>
>>> _______________________________________________
>>> Resteasy-users mailing list
>>> Resteasy-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/resteasy-users
>>>
>>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Resteasy-users mailing list
> Resteasy-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/resteasy-users
>

-- 
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users

Reply via email to