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) {