You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by sn...@apache.org on 2004/05/07 10:10:37 UTC

cvs commit: ws-fx/sandesha/interop/org/apache/sandesha/samples/interop ClientDeploy.wsdd

snimalan    2004/05/07 01:10:37

  Added:       sandesha/interop/org/apache/sandesha/samples/interop
                        ClientDeploy.wsdd
  Log:
  This is the sample WSDD for all Client, those are using EchoStringService and PingService, ---see the comments inside the wsdd
  PR:
  Obtained from:
  Submitted by:	
  Reviewed by:	
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.1                  ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/ClientDeploy.wsdd
  
  Index: ClientDeploy.wsdd
  ===================================================================
  <!-- Use this file to deploy some handlers/chains and services  -->
  <!-- on the client.  To do this simply run:                     -->
  <!--   java org.apache.axis.utils.Admin ClientDeploy.wsdd       -->
  <!--      from the same dir that the Axis client will run in    -->
  <!-- This file will be replaced by WSDD once it's ready         -->
  
  <!-- for the parameters sourceURI and replyTo set suitable value as set -->
  
  <deployment name="test" xmlns="http://xml.apache.org/axis/wsdd/"
      xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    <!--handler name="JMSSender" type="java:org.apache.axis.transport.jms.JMSSender" /-->
  
  
  <handler name="PingRequestHandler" type="java:org.apache.sandesha.ws.rm.handlers.RMClientRequestHandler">
     <parameter name="sourceURI" value="http://127.0.0.1:8070"/>
     <parameter name="action" value="wsrm:Ping"/>
     <parameter name="synchronized" value="false"/>
     <parameter name="replyTo" value="http://127.0.0.1:8070"/>
  </handler>
  
  <handler name="EchoStringRequestHandler" type="java:org.apache.sandesha.ws.rm.handlers.RMClientRequestHandler">
     <parameter name="sourceURI" value="http://127.0.0.1:8070"/>
     <parameter name="action" value="wsrm:echoString"/>
     <parameter name="synchronized" value="false"/>
     <parameter name="replyTo" value="http://127.0.0.1:8070"/>
  </handler>
  
  
  <handler name="RMClientResponseHandler" type="java:org.apache.sandesha.ws.rm.handlers.RMClientResponseHandler"></handler>
  
  <service name="PingService" provider="java:RPC">
  <requestFlow>
     <handler type="PingRequestHandler"/>
  </requestFlow>
  
  <responseFlow>
     <handler type="RMClientResponseHandler"/>
  </responseFlow>
  
     <parameter name="className" value="org.apache.sandesha.samples.interop.PingService"/>
    <parameter name="allowedMethods" value="*"/>
   </service>
  
  
  <service name="EchoStringService" provider="java:RPC">
  <requestFlow>
     <handler type="EchoStringRequestHandler"/>
  </requestFlow>
  
  <responseFlow>
     <handler type="RMClientResponseHandler"/>
  </responseFlow>
  
     <parameter name="className" value="org.apache.sandesha.samples.interop.EchoStringService"/>
    <parameter name="allowedMethods" value="*"/>
   </service>
  
  
  </deployment>