my WSDL file does not contain a <service> ... </service> part. So I don�t get a MayAppServiceLocator.java which I can use to create
an object which implements the MyApp interface.
I can�t change the wsdl file, and I don�t want to recompile may client when location of service changes. I decided to use the Stub class directly. So I do following:
Service service = new Service(); MyAppStub myApp = new MyAppStub(url, service); myApp.setPortName(serviceName);
myApp.foo(...)
This runs!
But the MayAppStub provides only little access to internal used Call objects. I�m affraid that I must access them, because I want
1) to change the transport mechanism, it should use a connection pool
By Wolfram
