Hello All,

I am trying to haave multiple POST methods something like this

@POST
@Path("/groups")
public Summary insertGroup(Group group)

and

@POST
@Path("/groups/{id}/users")
public void addUsersToGroup(@PathParam("id")UUID groupId,
                                ListWrapper<UUID> userIds)

The POST call to first method works absolutely fine,however call to the
addUsersToGroup method fails.
What could i be doing wrong?

Thanks,
Vishal
-- 
View this message in context: 
http://www.nabble.com/JAXRS%3A-Problems-with-POST-tp23090556p23090556.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to