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
In my experience, I use the sample code under samples/jaxrpc/hello. In that example, I use the '--server-side --skeletonDeploy true --deployScope Application' flags to build the wsdl file, i.e. I use my own build.xml. The following files are created: Hello.java <-- RPC interface He