I have this (not so cool) web service:
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService()
public class WMCWeb {
}
And would like to do something like
@WebMethod(operationName = "getMyObject")
public MyObject getMyObject(@WebParam(name = "id") String id) {
...
return new myObject;
}
But I can't just return an object. I don't really know what I should do to be able to do so. I read something about writing a org.apache.soap.util.Serializer, but it seems like an old solution. How can I make the WebService know how to translate the object to a Soap response?