And that's why its good to run axis inside a web app w/ directory browsing turned on :)
----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 7:42 AM Subject: cvs commit: xml-axis/java/src/org/apache/axis/transport/http AxisServlet.java > tomj 02/05/03 07:42:40 > > Modified: java/src/org/apache/axis/transport/http AxisServlet.java > Log: > Added missing file seperator character to default JWS class directory. > > Revision Changes Path > 1.97 +1 -1 xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java > > Index: AxisServlet.java > =================================================================== > RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java, v > retrieving revision 1.96 > retrieving revision 1.97 > diff -u -r1.96 -r1.97 > --- AxisServlet.java 24 Apr 2002 16:12:08 -0000 1.96 > +++ AxisServlet.java 3 May 2002 14:42:39 -0000 1.97 > @@ -159,7 +159,7 @@ > if (param != null) { > jwsClassDir = homeDir + param; > } else { > - jwsClassDir = webInfPath + "jwsClasses"; > + jwsClassDir = webInfPath + File.separator + "jwsClasses"; > } > } > > > > >