I am getting an error every time I try to add a new web service.
An internal error occurred during: “Generating JAX-WS Web Services”.
runtime modeler error: Wrapper class com.abc.websvc.jaxws.TestMethod is not found. Have you run APT to generate them?
I am using a simple class with one test method. I see that the apt_generated folder has the required java file TestMethod.java. It almost looks like the application is searching for the java object before it could generate it. Because of the error, it is not generating the WSDL.
public class Security {
private static final long serialVersionUID = 1L;
private String msg;
public Security() {
msg = “Prepend: “;
}
public String testMethod(String s) {
return msg + s;
}
}
Please provide any ideas to complete the web service creation process.
Thanks,
Naren