I'm not sure why the classes are placed there. Anyways, the applet classes - as described in the docs - must be placed in axis/*applet.class/WEB-INF.

HTH,
Robert
http://www.braziloutsource.com/

On 5/9/06, Vignesh M.P.N. <[EMAIL PROTECTED] > wrote:
Hi all
 
I am using Tomcat 5.5, Axis 1.4 and Java 1.5.
 
I am having problem in using SOAP monitor. I did go through the mail archive for help and couldn't fix this.
 
The class files for the SOAPMonitor.java were already in the "webapps\axis\WEB-INF\classes" folder. I deployed the SOAP monitor service using the following deployment descriptor.
 
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
            xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
  <handler name="soapmonitor"
           type="java:org.apache.axis.handlers.SOAPMonitorHandler">
    <parameter name="wsdlURL"
               value="/axis/SOAPMonitorService-impl.wsdl"/>
    <parameter name="namespace"
               value="http://tempuri.org/wsdl/2001/12/SOAPMonitorService-impl.wsdl"/>
    <parameter name="serviceName" value="SOAPMonitorService"/>
    <parameter name="portName" value="Demo"/>
  </handler>
  <service name="SOAPMonitorService" provider="java:RPC">
    <parameter name="allowedMethods" value="publishMessage"/>
    <parameter name="className"
               value="org.apache.axis.monitor.SOAPMonitorService"/>
    <parameter name="scope" value="Application"/>
  </service>
</deployment>
 
I also included the following in the descriptor of my service and undeployed and deployed it again.
<requestFlow>
       <handler type="soapmonitor"/>
     </requestFlow>
     <responseFlow>
       <handler type="soapmonitor"/>
     </responseFlow>
 
I uncommented the snippet under <!-- uncomment this if you want the admin servlet --> in the web.xml.
 
But the SOAP monitor applet isn't working for me and the Java console says
load: class SOAPMonitorApplet.class not found.
java.lang.ClassNotFoundException: SOAPMonitorApplet.class
 at sun.applet.AppletClassLoader.findClass(Unknown Source)
 at java.lang.ClassLoader.loadClass(Unknown Source)
 at sun.applet.AppletClassLoader.loadClass(Unknown Source)
 at java.lang.ClassLoader.loadClass(Unknown Source)
 at sun.applet.AppletClassLoader.loadCode(Unknown Source)
 at sun.applet.AppletPanel.createApplet(Unknown Source)
 at sun.plugin.AppletViewer.createApplet(Unknown Source)
 at sun.applet.AppletPanel.runLoader(Unknown Source)
 at sun.applet.AppletPanel.run(Unknown Source)
 at java.lang.Thread.run(Unknown Source)
....
 
Please help. :)
 
Thanks
Vignesh.
 

Reply via email to