Hi again!
Realy there ar no ways to solve my problem?
This is simple web-service:
@WebService()
public class SimpleWS{
@WebMethod()
public String testObj (Object o){
// o processing..
return res;
}
I have custom type A. I generated client artifacts for SimpleWS web-service and when I call the testObj method, I want to transmit object of type A. And I have the error on the client side:
javax.xml.bind.JAXBException: class esimo.ws.buoys.BuoysDetails nor any of its super class is known to this context.]
Are there really no ways to solve this? Please, help!!