Hello, I have been developing an extention using
java1.6,net-beans6.1,jax-ws(Web Services),tomcat6.
Firstly generated one web service by using netbeans6 which
simply takes one string and returns string to client.
Then created .war of same and deployed in tomacat
web-apps.
After this developed one simple java program which calls
above created web-service.As successfully testing this
java client, created its .jar file then added into
openoffices add-on extention program. Then simpley called jar's
method which calls web service.
if ( aURL.Path.compareTo("CallWeb") == 0 ) {
// add your own code here
System.out.println("Calling Web Service-----");
Main m = new Main();
m.callWebService("lower caseeeeeeeeeee");
}
But while doing this it throws following exception.....
Exception =
com.sun.xml.internal.ws.model.RuntimeModelerException: runtime modeler
error: Wrapper class callWebService is not found. Have you run APT to
generate them?
--
Thanks and Regards,
Dinesh