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 ow...@apache.org on 2002/10/24 19:22:19 UTC

cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis WSIFPort_ApacheAxis.java

owenb       2002/10/24 10:22:19

  Modified:    java/src/org/apache/wsif/providers/soap/apacheaxis
                        WSIFPort_ApacheAxis.java
  Log:
  Fix to maintain sessions within the Axis port. By default the Axis call object does not maintain sessions so set a flag explicitly
  
  Revision  Changes    Path
  1.13      +1 -0      xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java
  
  Index: WSIFPort_ApacheAxis.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- WSIFPort_ApacheAxis.java	24 Oct 2002 16:09:08 -0000	1.12
  +++ WSIFPort_ApacheAxis.java	24 Oct 2002 17:22:19 -0000	1.13
  @@ -447,6 +447,7 @@
                 throw new WSIFException(e.toString());
              }
       	}
  +    	call.setMaintainSession(true);
           Trc.exit(call);
           return call;
       }