This is my first attempt to install axis. I've run tomcat and jsps for some time, and now I would like to get into soap. I think axis is finally close to working, but I'm getting an error that I have not been able to find or work around, either in various greps or google searches. I am installing axis 1.0, the xml-axis-10.tar.gz file. I'm installing in an environment running tomcat 4.1.12.
tomcat is running with a connector on port 8080. After setting the classpath with the various jars and paths needed I start the SimpleAxisServer on 8008. /usr/local/jdk/bin/java \ org.apache.axis.transport.http.SimpleAxisServer -p 8008 I then try to access the following URL to exercise axis a bit. lynx http://some.domain.com:8008/axis/index.html The result is the error message below. What is baffling is that I cannot find any reference to test.wsdl.getPort.BindingThreeImpl. If I'm doing something stupid in the sequence above I would certainly like to find it. Any idea how to fix this would be appreciated. Thanks much, -- Michael - Exception: java.lang.ClassNotFoundException: test.wsdl.getPort.BindingThreeImpl at java.net.URLClassLoader$1.run(URLClassLoader.java:198) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:186) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265) at java.lang.ClassLoader.loadClass(ClassLoader.java:262) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:322) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:130) at org.apache.axis.utils.ClassUtils$2.run(ClassUtils.java:197) at java.security.AccessController.doPrivileged(Native Method) at org.apache.axis.utils.ClassUtils.loadClass(ClassUtils.java:171) at org.apache.axis.utils.ClassUtils.forName(ClassUtils.java:154) at org.apache.axis.utils.cache.ClassCache.lookup(ClassCache.java:122) at org.apache.axis.providers.java.JavaProvider.getServiceClass(JavaProvider.java:502) at org.apache.axis.providers.java.JavaProvider.initServiceDesc(JavaProvider.java:535) at org.apache.axis.handlers.soap.SOAPService.getInitializedServiceDesc(SOAPService.java:322) at org.apache.axis.deployment.wsdd.WSDDService.makeNewInstance(WSDDService.java:477) at org.apache.axis.deployment.wsdd.WSDDDeployment.getDeployedServices(WSDDDeployment.java:566) at org.apache.axis.configuration.FileProvider.getDeployedServices(FileProvider.java:322) at org.apache.axis.transport.http.SimpleAxisWorker.run(SimpleAxisWorker.java:341) at org.apache.axis.transport.http.SimpleAxisServer.run(SimpleAxisServer.java:175) at org.apache.axis.transport.http.SimpleAxisServer.start(SimpleAxisServer.java:214) at org.apache.axis.transport.http.SimpleAxisServer.start(SimpleAxisServer.java:222) at org.apache.axis.transport.http.SimpleAxisServer.main(SimpleAxisServer.java:285)