RE: SOAP on TOMCAT 5.0

2005-09-20 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Subject: SOAP on TOMCAT 5.0 > > java.lang.UnsupportedClassVersion error: org/w3c/dom/Node (unsupported > major.minor version 48.0) This is the version of a class file you're trying to load - 48.0 corresponds to JRE/JDK 1.4, so that would indi

Re: SOAP on TOMCAT 5.0

2005-09-19 Thread Hardik Tank
hi, u will get "unsupported major.minor version 48.0" error when ur code has been compiled using higher version of JDK (may be 1.5) and u r running it using lower version of JDK/JRE (may be 1.4) check ur setup and JRE/JDK once again. rgds, Hardik Tank --- [EMAIL PROTECTED] wrote: > > Hi Guys