Hi all,
Have you ever tried to use a post method with multiple parameters like:
@Path("test")
public class myClass{
@POST
@Path("/post")
public Response myMethod(ANewClass classA, AnotherClass classB){
return Response.ok().build();
}
}
I don't know how to deal with multiple parameters... Can you give me a
simple example?
Thanks
--
View this message in context:
http://www.nabble.com/Post-method-with-multiple-parameters-tp18237851p18237851.html
Sent from the cxf-user mailing list archive at Nabble.com.