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 du...@apache.org on 2002/10/03 13:26:19 UTC

cvs commit: xml-axis/java/src/org/apache/axis/transport/http SimpleAxisServer.java

dug         2002/10/03 04:26:19

  Modified:    java/src/org/apache/axis/transport/http
                        SimpleAxisServer.java
  Log:
  Fix for bug 13242
  
  Revision  Changes    Path
  1.75      +9 -1      xml-axis/java/src/org/apache/axis/transport/http/SimpleAxisServer.java
  
  Index: SimpleAxisServer.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/transport/http/SimpleAxisServer.java,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- SimpleAxisServer.java	18 Sep 2002 16:10:30 -0000	1.74
  +++ SimpleAxisServer.java	3 Oct 2002 11:26:19 -0000	1.75
  @@ -95,7 +95,7 @@
       private Hashtable sessions = new Hashtable();
   
       // Are we doing threads?
  -    private static boolean doThreads = false;
  +    private static boolean doThreads = true;
   
       // Are we doing sessions?
       // Set this to false if you don't want any session overhead.
  @@ -103,6 +103,14 @@
   
       protected boolean isSessionUsed() {
           return doSessions;
  +    }
  +
  +    public void setDoThreads(boolean value) {
  +        doThreads = value ;
  +    }
  +
  +    public boolean getDoThreads() {
  +        return doThreads ;
       }
   
       protected Session createSession(String cooky) {
  
  
  

Re: cvs commit: xml-axis/java/src/org/apache/axis/transport/http SimpleAxisServer.java

Posted by Sam Ruby <ru...@apache.org>.
Can you do me a favor and take a look at lines 74-77 of this file?

- Sam Ruby