try modify your pojo like
@WebService(serviceName = "ExampleService", targetNamespace =
"http://example.com",portName="ExampleServicePort",name="ExampleService",wsdlLocation="http://localhost:9090/ExampleServicePort")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public class ExampleService { public String sayHello(
@WebParam(name = "arg0", targetNamespace = "")
String name) {
System.out.println("INVOKED!");
return "Hello "+name;
}
Freeman,
My class now looks like:
@WebService(serviceName = "ExampleService", targetNamespace =
"http://example.com",portName="ExampleServicePort",name="ExampleService")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public class ExampleService {
@WebMethod
public String sayHello(String name) {
System.out.println("INVOKED!");
return "Hello "+name;
}
}
I shut down smx, redeployed, deleted data folder and restarted. No
improvement. I get the exact same error I was getting earlier.
Thanks,
Sylvester