RE: the basics...

2006-05-04 Thread Rhimbo
Hello James, Sorry if someone has already replied on this topic. I compile my Java source with full debug: $ javac -g *.java Vartan --- James Armstrong <[EMAIL PROTECTED]> wrote: > Hi, > > Can someone point me to an example of how I would use the Java2WSDL > tool and > MAINTAIN the

RE: the basics...

2006-05-03 Thread James Armstrong
Thanks Anne – that works   Unfortunately when I run it – my class file is overwritten?? Any suggestions? james From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 03, 2006 1:30 PM To: axis-user@ws.apache.org Subject: Re: the basics...   Generate the WSDL

Re: the basics...

2006-05-03 Thread Anne Thomas Manes
Generate the WSDL from the class (rather than the interface) compiled with debugging on (-g option).AnneOn 5/3/06, James Armstrong < [EMAIL PROTECTED]> wrote: Hi, Can someone point me to an example of how I would use the Java2WSDL tool and MAINTAIN the parameter names, ie.   Public S

RE: the basics...

2006-05-03 Thread James Armstrong
Hi, Can someone point me to an example of how I would use the Java2WSDL tool and MAINTAIN the parameter names, ie.   Public SimpleMethod {     Public simpleMethod(int intname) {     …     }     }   I want the wsdl to preserve intName as the par