Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-16 Thread Vy Ho
I got the thing to work now with regard to this enum problem. Thank you all. vh.

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-16 Thread Davanum Srinivas
- pick up the nightly On Tue, 16 Nov 2004 10:03:06 +0100, WAJSBERG Julien RD-BIZZ <[EMAIL PROTECTED]> wrote: > Vy Ho a écrit : > > > > > Also, unzip the axis.jar file, I do not see the package there either. > > It's only on the CVS trunk : > http://cvs.apache.org/viewcvs.cgi/ws-axis/java/src/

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-16 Thread WAJSBERG Julien RD-BIZZ
Vy Ho a écrit : Also, unzip the axis.jar file, I do not see the package there either. It's only on the CVS trunk : http://cvs.apache.org/viewcvs.cgi/ws-axis/java/src/org/apache/axis/constants/ You must either : - wait for the next Axis release - checkout the CVS version -- Julien

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
EMAIL PROTECTED] Subject: Re: Does axis 1.2 comply with JDK 5.0 (1.5) Also, unzip the axis.jar file, I do not see the package there either.

RE: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Jonathan Colwell
Try grabbing a nightly build, or building from the CVS tree. IIRC, the constants package was created after RC1. -Original Message- From: Vy Ho [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 9:58 AM To: [EMAIL PROTECTED] Subject: Re: Does axis 1.2 comply with JDK 5.0 (1.5

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
Also, unzip the axis.jar file, I do not see the package there either.

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
Looking at the API documentation at: http://ws.apache.org/axis/java/apiDocs/index.html (the link came from the page http://ws.apache.org/axis/java/index.html, which says it's the documentation for Axis 1.2), I do not see any package with the name constants under org.apache.axis. Could you plea

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Davanum Srinivas
constants is a package On Mon, 15 Nov 2004 12:38:33 -0500, Vy Ho <[EMAIL PROTECTED]> wrote: > > I am sorry to bother you so much, but I tried to use these constants > without success. > > The setStyle and setUse of class > org.apache.axis.description.OperationDesc uses 2 enumerations of types >

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
I am sorry to bother you so much, but I tried to use these constants without success. The setStyle and setUse of class org.apache.axis.description.OperationDesc uses 2 enumerations of types Style and Use. However, if I look at the Api of class org.apache.axis.Constants, I don't see any const

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Davanum Srinivas
yep On Mon, 15 Nov 2004 11:59:45 -0500, Vy Ho <[EMAIL PROTECTED]> wrote: > Thank you for the info. > > So this will go to the next release, such as Axis 1.2 RC2 or some thing? > > -- Davanum Srinivas - http://webservices.apache.org/~dims/

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
Thank you for the info. So this will go to the next release, such as Axis 1.2 RC2 or some thing?

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Davanum Srinivas
we've fixed wsdl2java to do the same as well. -- dims On Mon, 15 Nov 2004 11:52:41 -0500, Vy Ho <[EMAIL PROTECTED]> wrote: > Thank you very much for the information. I'll change that to the code. > However, this code is generated by Wsdl2Java. That means everytime I > change something (still e

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Vy Ho
Thank you very much for the information. I'll change that to the code. However, this code is generated by Wsdl2Java. That means everytime I change something (still early stage in defining things), I have to manually go over and change these lines. Is there a switch to just tell Wsdl2Java to

Re: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Davanum Srinivas
use org.apache.axis.constants.* (present in latest cvs) On Mon, 15 Nov 2004 00:40:15 -0500, V D <[EMAIL PROTECTED]> wrote: > > When generating java code using wsdl2java, I have these lines: > > oper.setStyle(org.apache.axis.enum.Style.RPC); > oper.setUse(org.apache.axis.enum.Use

Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-14 Thread V D
When generating java code using wsdl2java, I have these lines: oper.setStyle(org.apache.axis.enum.Style.RPC); oper.setUse(org.apache.axis.enum.Use.ENCODED); These enums causes problem when I compiling with jdk 5.0. So, does Axis 1.2 supporting Jdk1.5? Is there any option for the co