Re: Axis and Java 1.5

2004-12-13 Thread footh
> using 1.4 compatibility. But > > > that would lose any benefits that 1.5 gives. > > > > > > I guess there should be a branch of the apache > projects for 1.5 vs 1.4 jdk. > > > In all honesty, 1.5 deserves to be called 2.0 > it's that different! >

Re: Axis and Java 1.5

2004-12-13 Thread ANDREW MICONE
should be a branch of the apache projects for 1.5 vs 1.4 jdk. > > In all honesty, 1.5 deserves to be called 2.0 it's that different! > > > > -Original Message- > > From: Bouche Paul [mailto:[EMAIL PROTECTED] > > Sent: Monday, December 13, 2004 6:50 AM >

RE: Axis and Java 1.5

2004-12-13 Thread Brown, Mike
uld be a branch of the apache projects for 1.5 vs 1.4 jdk. In all honesty, 1.5 deserves to be called 2.0 it's that different! -Original Message- From: Bouche Paul [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 6:50 AM To: [EMAIL PROTECTED] Subject: RE: Axis and Java 1.5

Re: Axis and Java 1.5

2004-12-13 Thread Davanum Srinivas
andline parameter to compile using 1.4 compatibility. But > > that would lose any benefits that 1.5 gives. > > > > I guess there should be a branch of the apache projects for 1.5 vs 1.4 jdk. > > In all honesty, 1.5 deserves to be called 2.0 it's that different! > > &

Re: Axis and Java 1.5

2004-12-13 Thread Davanum Srinivas
riginal Message----- > From: Bouche Paul [mailto:[EMAIL PROTECTED] > Sent: Monday, December 13, 2004 6:50 AM > To: [EMAIL PROTECTED] > Subject: RE: Axis and Java 1.5 > > Hi, > > > Upon further review, I discovered that the org.w3c.com.Node interface > > has the new

RE: Axis and Java 1.5

2004-12-13 Thread ANDREW MICONE
EMAIL PROTECTED] Sent: Monday, December 13, 2004 6:50 AM To: [EMAIL PROTECTED] Subject: RE: Axis and Java 1.5 Hi, > Upon further review, I discovered that the org.w3c.com.Node interface > has the new method "getUserData(String key)" in Java 1.5. I'm sure > this is the r

RE: Axis and Java 1.5

2004-12-13 Thread Bouche Paul
Hi, > Upon further review, I discovered that the > org.w3c.com.Node interface has the new method > "getUserData(String key)" in Java 1.5. I'm sure this > is the reason for all the errors - interfaces not > fully implemented. I also got these errors when trying to build axis with Java 1.5. Yet thi

Re: Axis and Java 1.5

2004-12-10 Thread Davanum Srinivas
SAAJ 1.2 mandatest the old dom, not dom3getUserData is part of dom3. -- dims On Fri, 10 Dec 2004 14:38:44 -0800 (PST), footh <[EMAIL PROTECTED]> wrote: > Upon further review, I discovered that the > org.w3c.com.Node interface has the new method > "getUserData(String key)" in Java 1.5. I'm s

Re: Axis and Java 1.5

2004-12-10 Thread footh
Upon further review, I discovered that the org.w3c.com.Node interface has the new method "getUserData(String key)" in Java 1.5. I'm sure this is the reason for all the errors - interfaces not fully implemented. There are 16 of these errors so I suppose I could go through each one and add the miss

Re: Axis and Java 1.5

2004-12-10 Thread footh
Thanks everyone for you help. Here's an update: I confess I don't quite understand what "re-generating java files from the WSDL" means. I'm guessing that means turning the axis services back into java source? All I am trying to do is just use the ant file in the Axis install home and type "ant

Re: Axis and Java 1.5

2004-12-10 Thread Michael Schuerig
On Friday 10 December 2004 21:45, Davanum Srinivas wrote: > or replace all references of org.apache.axis.enum.* to > org.apache.axis.constants.* Unfortunately that doesn't work for a lot of cases. Try this import org.apache.axis.constants.Style; public class Test { public static void method(

Re: Axis and Java 1.5

2004-12-10 Thread Davanum Srinivas
or replace all references of org.apache.axis.enum.* to org.apache.axis.constants.* -- dims On Fri, 10 Dec 2004 12:34:57 -0700, ANDREW MICONE <[EMAIL PROTECTED]> wrote: > Re-gen your java classes from the WSDL (making sure to move your BindingImpl > out of the tree so that can be regenerated as

Re: Axis and Java 1.5

2004-12-10 Thread ANDREW MICONE
Re-gen your java classes from the WSDL (making sure to move your BindingImpl out of the tree so that can be regenerated as well). I got this to work. You might want to consider just tooling back to JDK 1.42. That's what I did after I figured out that all JDK 1.5 was buying me was a little better

Re: Axis and Java 1.5

2004-12-10 Thread Vy Ho
Those enums come from WSDL2Java. So did you run this command again after BACKUP and delete the old generated Java files? If you still have enum in these, please file bug report.

Re: Axis and Java 1.5

2004-12-10 Thread footh
Thanks for the reply. After I posted my message yesterday, I did go ahead and attempt to build Axis using RC2. However, the compiler output still spits out all the "enum" errors. If I switch the JAVA_HOME environment variable to the 1.4.2 home, Axis builds fine. Is there some simple step I'm mi

Re: Axis and Java 1.5

2004-12-10 Thread ANDREW MICONE
Actually, you just need the latest 1.2RC2 (the version that changed enums to constants) to get it to work under J2SE1.5. It is still compiled under 1.42. It sounds like you are having problems with errors generated by WSDL2Java. By the way, unless you are using J2SE1.5 features, you don't gain m

Axis and Java 1.5

2004-12-09 Thread footh
When using Axis with java 1.5 installed I get all these Unsupported major.minor version errors. When I switch to any version of 1.4 I have no problems. So, I am guessing that I must recompile the Axis source under 1.5 for it to work properly? I've read other messages of people who have successfu