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 ch...@apache.org on 2006/02/24 10:52:13 UTC

svn commit: r380633 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java

Author: chinthaka
Date: Fri Feb 24 01:52:11 2006
New Revision: 380633

URL: http://svn.apache.org/viewcvs?rev=380633&view=rev
Log:
- fixing http://issues.apache.org/jira/browse/AXIS2-463 - take two

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java?rev=380633&r1=380632&r2=380633&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AxisServlet.java Fri Feb 24 01:52:11 2006
@@ -50,11 +50,11 @@
 public class AxisServlet extends HttpServlet implements TransportListener {
 
     private static final long serialVersionUID = -2085869393709833372L;
-    private static final String CONFIGURATION_CONTEXT = "CONFIGURATION_CONTEXT";
+    public static final String CONFIGURATION_CONTEXT = "CONFIGURATION_CONTEXT";
     public static final String SESSION_ID = "SessionId";
-    private ConfigurationContext configContext;
-    private AxisConfiguration axisConfiguration;
-    private ListingAgent lister;
+    protected ConfigurationContext configContext;
+    protected AxisConfiguration axisConfiguration;
+    protected ListingAgent lister;
 
     protected MessageContext createAndSetInitialParamsToMsgCtxt(Object sessionContext,
                                                               MessageContext msgContext, HttpServletResponse httpServletResponse,