rubys       2002/10/04 08:34:54

  Modified:    java/src/org/apache/axis/transport/http Tag: axis1_0
                        SimpleAxisServer.java
  Log:
  Roll 13242 into Release 1.0
    +1 Votes: Dug, Rick, Sam
    +0 Votes: Glen
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.74.4.1  +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.74.4.1
  diff -u -r1.74 -r1.74.4.1
  --- SimpleAxisServer.java     18 Sep 2002 16:10:30 -0000      1.74
  +++ SimpleAxisServer.java     4 Oct 2002 15:34:54 -0000       1.74.4.1
  @@ -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) {
  
  
  


Reply via email to