WSDD file to deploy service with Monitor

From GEANT2-JRA1 Wiki

<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
 
<service name="MeasurementArchiveService" style="message">
<Documentation>Defines the name of the service and the type of service. The style if message which for some
reason makes communication cleaner and does not affect anything. It implicitly uses Document style </Documen
tation>
 
  <requestFlow>
      <handler name="soapmonitor"
          type="java:org.apache.axis.handlers.SOAPMonitorHandler"/>
  </requestFlow>
  <responseFlow>
      <handler name="soapmonitor"
          type="java:org.apache.axis.handlers.SOAPMonitorHandler"/>
  </responseFlow>
 
<parameter name="className" value="org.perfsonar.service.web.RequestHandler"/>
<Documentation> Define the name of the class to be used for the service. This will remain the same regardles
s of the service </Documentation>
 
<parameter name="allowedMethods" value="acceptCall"/>
<Documentation> specified the methods that can be accessed. Only one method for now and that is acceptCall</
Documentation>
 
<namespace>http://perfsonar.org/services/measurementPoint</namespace>
<Documentation> namespace associated with the service </Documentation>
 
</service>
</deployment>
Personal tools