> ==>Ok, thank you. But how can I launch commands such as > java org.apache.axis.wsdl.Java2WSDL -o ...... [classname] without having the > classpath value of [classname] in the CLASSPATH > environment variable? > In other words, I tried to specify the classpath in this way: > java org.apache.axis.wsdl.Java2WSDL -o ...... [classname] > obtaining an error, since -cp is not this way recognised > as an option of the Java.exe command but instead an > org.apache.axis.wsdl.Java2WSDL incorrect one.
Run it this way: java -cp [classpath] org.apache.axis.wsdl.Java2WSDL -o ... -- Eddie
