Hi Robert,
  You have to set the handlers for each of the service where you would like to use SOAPMonitor in WEB-INF\server-config.wsdd
 
Here's a sample of my server-config.wsdd.
 
operation name="calculateFibonacciRange" qname="ns2:calculateFibonacciRange" returnQName="calculateFibonacciRangeReturn" returnType="ns2:ArrayOf_xsd_int" xmlns:ns2="urn:fibonacci">
   <parameter name="in0" type="xsd:int" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
   <parameter name="in1" type="xsd:int" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
  </operation>
  <requestFlow>
   <handler type="soapmonitor"/>
  </requestFlow>
  <responseFlow>
   <handler type="soapmonitor"/>
  </responseFlow>
  <parameter name="allowedMethods" value="calculateFibonacciRange calculateFibonacci"/>
  <parameter name="wsdlPortType" value="Fibonacci"/>
 
 
I hope that helps.
 
Note: I'll prefer using TCPMonitor over SOAPMonitor
 
Sunil Kothari
----- Original Message -----
Sent: Tuesday, December 28, 2004 12:21 AM
Subject: SOAPMonitor next question

Hi!
 
I have gotten the applet to display now. I have also deployed a simple Web Service and written a client for it.
However, the SOAPMonitor does not seem to do anything.
The calls to the WS ar working fine, I get the return values, but the SOAPMonitor applet remains empty....
Does the SOAPMonitorService monitor all deployed WS? Or do they have to be registered with the SOAPMonitor in any way?
 
any help is appreciated
 
Robert

Reply via email to