Hello All!
I've integrated SOAP into the default web-app in Resin and I've been able to deploy
services and successfully call them -- now I'm after SOAPMonitor functionality before
I call it a day.
In resin.conf (Resin's configuration file), I have, for the default web-app the
following servlet config:
<servlet>
<servlet-name>SOAPMonitorService</servlet-name>
<display-name>SOAPMonitorService</display-name>
<servlet-class>
org.apache.axis.monitor.SOAPMonitorService
</servlet-class>
<init-param>
<param-name>SOAPMonitorPort</param-name>
<param-value>2222</param-value>
</init-param>
<load-on-startup>100</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SOAPMonitorService</servlet-name>
<url-pattern>/axis/SOAPMonitor</url-pattern>
</servlet-mapping>
I am able to access the SOAPMonitorService and see the applet rendered (compiled
SOAPMonitorApplet and move all associated classes to app-root/axis), however, I don't
see anything coming through the monitor althought I'm succesfully invoking services
and getting replies from the server.
Any ideas? Isn't the monitor a global handler, ie, will always process my incoming
request?
Thanks,
Cory