RE: Axis code generation HOW-TO

2003-09-01 Thread Mayne, Peter
Title: RE: Axis code generation HOW-TO > From: Stuart Barlow > The main reason I went for the whole loop (Java2WSDL and WSDL2Java) > was to see how AXIS was interpretting my types. Maps became HashMaps, > contained Collections became arrays, and Exceptions moved to being &g

Re: Axis code generation HOW-TO

2003-08-29 Thread Stuart Barlow
so what's that I am missing? Thanks a lot ! Ajay Stuart Barlow <[EMAIL PROTECTED]> 08/28/2003 01:58 PM Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject Re: Axis code generation HOW-TO You are right that its a bit fiddly. But with ANT you can automate the wh

Re: Axis code generation HOW-TO

2003-08-28 Thread Ajay Gondhiya
To [EMAIL PROTECTED] cc Subject Re: Axis code generation HOW-TO You are right that its a bit fiddly. But with ANT you can automate the whole process. My process... 1. Take original API classes and build. 2. Run Java2WSDL to generate WSDL. 3. Run WSDL2Java to generate new API .java files a

RE: Axis code generation HOW-TO

2003-08-28 Thread Yuvraj Waswani
parameter/return type objects. I tried to use my original objects (which didnt contain generated code..just my beans) and it still works. -Original Message- From: chaddad [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 5:38 PM To: [EMAIL PROTECTED] Subject: Re: Axis code generation HOW

Re: Axis code generation HOW-TO

2003-08-28 Thread chaddad
Great tip Stuart! here's some additional tricks. the destination directory for all generated source files should be /build/work directory. usually i have /build/work/schema for wsdl and /build/work/com/... for java source. after generating the java source, copy the implementation file over i

Re: Axis code generation HOW-TO

2003-08-28 Thread Stuart Barlow
You are right that its a bit fiddly. But with ANT you can automate the whole process. My process... 1. Take original API classes and build. 2. Run Java2WSDL to generate WSDL. 3. Run WSDL2Java to generate new API .java files and bindings. 4. Chuck away original API classes and copy new .java files i

Axis code generation HOW-TO

2003-08-28 Thread Mayne, Peter
Title: Axis code generation HOW-TO I'm just starting out with Axis, so I haven't learned the tricks of the trade yet. I have a class p.C, which contains at least one method that returns an object of class p.R and throws an exception p.E. I use axis-java2wsdl (from Ant within E