Re: WSDL2Java Stub and Call objects

2003-10-13 Thread Claudio Nieder
Hi, > In the stub there is a method named "createCall(...) ". You can manually > change the code inside the - createCall method to create a call object > that you desire. In my case to get access I modified the stub to make createCall protected. This way I need to make minimal modifications in th

RE: WSDL2Java Stub and Call objects

2003-10-12 Thread Dimuthu Leelarathne
o create a call object that you desire. Regards, Dimuthu. > -Original Message- > From: Wolfram Ditzer [mailto:[EMAIL PROTECTED] > Sent: Friday, October 10, 2003 11:17 PM > To: [EMAIL PROTECTED] > Subject: RE: WSDL2Java Stub and Call objects > > Hello, > > my WSD

RE: WSDL2Java Stub and Call objects

2003-10-11 Thread Alex Chen
Usually the stub functions is created by the code generator and we do not touch it at all. -Original Message- From: Wolfram Ditzer [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 11:17 PM To: [EMAIL PROTECTED] Subject: RE: WSDL2Java Stub and Call objects Hello, my WSDL file

RE: WSDL2Java Stub and Call objects

2003-10-11 Thread Wolfram Ditzer
Hello, my WSDL file does not contain a ... 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 S

RE: WSDL2Java Stub and Call objects

2003-10-10 Thread Alex Chen
ort. There is a bug in WSDL2Java that the default getHelloPort() it generates does not work. You have to use the one that takes a URL. This is somewhat explained in the user's guide. -Original Message- From: Wolfram Ditzer [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 20

WSDL2Java Stub and Call objects

2003-10-10 Thread Wolfram Ditzer
Hello, I use a wsdl2java to generate client classes. I also get a MyServiceStub.java, which prvides a interface to my webservices. When I look into this list and a lot of example I see nearly nno one using ths Stub-classes. Instead all people uses Call objects created by a Service object. Sho