You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2004/11/29 13:57:56 UTC

cvs commit: ws-axis/c/samples/server/session/headers readme.txt

sanjaya     2004/11/29 04:57:56

  Added:       c/samples/server/session/headers readme.txt
  Log:
  adding readme.txt file for the SOAP header based session sample's
  Axis Java serverside
  
  Revision  Changes    Path
  1.1                  ws-axis/c/samples/server/session/headers/readme.txt
  
  Index: readme.txt
  ===================================================================
  -This folder contains the source needed to build the Axis java service needed to run the soap header based session client
  
  -compile this java source file and deploy it in Axis java (visit http://ws.apache.org/axis/java/index.html for further 
  details)
  
  -The following should be put in the server-config.wsdd of Axis java for this service to behave as having session scope.
  
  <service name="CounterService" provider="java:RPC">
  <parameter name="scope" value="session"/>
  <requestFlow> 
  <handler type="session"/> 
  </requestFlow> 
  <responseFlow> 
  <handler type="session"/> 
  </responseFlow> 
    <parameter name="allowedMethods" value="*"/>
    <parameter name="className" value="counters.CounterSoapBindingImpl"/>
    <namespace>http://xml.apache.org/axis/wsdd/</namespace>
  </service>
  
  - since Axis c++ doesn't support multiref yet, Axis java multiref should be disabled by putting the element 
  <parameter name="sendMultiRefs" value="false"/> 
  under <globalConfiguration>