here is my output from trying the first option. ~$ source .bashrc bash: /commons-logging-1.0.4.jar:/jaxrpc.jar:/saaj.jar:: No such file or directory bash: /log4j-1.2.8.jar:/xml-apis.jar:/xercesImpl.jar: No such file or directory ~$ export AXIS_HOME; export AXIS_LIB; export AXISCLASSPATH ~$ echo $AXIS_HOME
~$ echo $AXIS_LIB ~$ echo $AXISCLASSPATH for the second option, do you mean to add the 'set CLASSPATH=...' to my .bashrc instead of the AXISCLASSPATH recommended on the Axis site? Thanks, Gordon export AXIS_HOME; export AXIS_LIB; export AXISCLASSPATH //make SURE AXIS_HOME is updated echo $AXIS_HOME //make sure AXIS_LIB is updated echo $AXIS_LIB //make sure AXISCLASSPATH is updated echo $AXISCLASSPATH //all else fails the quickest solution is to put these jars (/commons-logging-1.0.4.jar:/jaxrpc.jar:/saaj.jar,/log4j-1.2.8.jar:/xml-apis.jar:/xercesImpl.jar) //right on your $CLASSPATH e.g. set CLASSPATH=$CLASSPATH:/commons-logging-1.0.4.jar:/jaxrpc.jar:/saaj.jar,/log4j-1.2.8.jar:/xml-apis.jar:/xercesImpl.jar export $CLASSPATH //make sure you set CLASSPATH properly echo $CLASSPATH HTH/ M- -- View this message in context: http://www.nabble.com/Problems-with-AXISCLASSPATH-tf3727569.html#a10609767 Sent from the Axis - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
