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 de...@apache.org on 2005/10/13 06:13:40 UTC

svn commit: r320644 - in /webservices/axis2/trunk/java/modules/core: src/org/apache/axis2/engine/AxisEngine.java src/org/apache/axis2/util/Utils.java webapp/Login.jsp

Author: deepal
Date: Wed Oct 12 21:13:20 2005
New Revision: 320644

URL: http://svn.apache.org/viewcvs?rev=320644&view=rev
Log:
Fixing AXIS2-278 

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/Utils.java
    webservices/axis2/trunk/java/modules/core/webapp/Login.jsp

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java?rev=320644&r1=320643&r2=320644&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/engine/AxisEngine.java Wed Oct 12 21:13:20 2005
@@ -106,10 +106,8 @@
      * Here the <code>ExecutionChain</code> is created using the Phases. The Handlers at the each Phases is ordered in
      * deployment time by the deployment module
      *
-     * @param context
      * @throws AxisFault
      * @see MessageContext
-     * @see ExecutionChain
      * @see Phase
      * @see Handler
      */

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/Utils.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/Utils.java?rev=320644&r1=320643&r2=320644&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/Utils.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/Utils.java Wed Oct 12 21:13:20 2005
@@ -130,8 +130,11 @@
     public static void resolvePhases(AxisConfiguration axisconfig,
                                      ServiceDescription serviceDesc)
             throws AxisFault, PhaseException {
-        PhaseResolver pr = new PhaseResolver(axisconfig, serviceDesc);
-        pr.buildchains();
+        //todo we do not need this
+//        PhaseResolver pr = new PhaseResolver(axisconfig, serviceDesc);
+//        pr.buildchains();
+        // fixing the BUG AXIS2-278
+        // we do not need to  do this , since when adding a service this automatically done
     }
 
     public static String getParameterValue(Parameter param) {

Modified: webservices/axis2/trunk/java/modules/core/webapp/Login.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/Login.jsp?rev=320644&r1=320643&r2=320644&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/Login.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/Login.jsp Wed Oct 12 21:13:20 2005
@@ -1,5 +1,6 @@
 <%@ page import="org.apache.axis2.Constants"%>
-<%@ page import="org.apache.axis2.transport.http.ListingAgent"%> <%--
+<%@ page import="org.apache.axis2.transport.http.ListingAgent"%>
+<%--
  /*
 * Copyright 2004,2005 The Apache Software Foundation.
 *
@@ -38,7 +39,7 @@
 %>
 <table class="FULL_BLANK">
 <tr><td valign="top">
-<jsp:include page="happy_axis.jsp?type=min"></jsp:include>
+<%--<jsp:include page="happy_axis.jsp?type=min"></jsp:include>--%>
 
 </td>
 <td valign="middle" align="left">
@@ -76,7 +77,6 @@
 </td>
 </tr>
 </table>
-</td></tr><tr><td>
   <jsp:include page="include/footer.inc"></jsp:include>
 <script language="JavaScript">
 <!--



Re: svn commit: r320644 - in /webservices/axis2/trunk/java/modules/core: src/org/apache/axis2/engine/AxisEngine.java src/org/apache/axis2/util/Utils.java webapp/Login.jsp

Posted by Sanjiva Weerawarana <sa...@opensource.lk>.
On Thu, 2005-10-13 at 04:13 +0000, deepal@apache.org wrote:
> -        pr.buildchains();
> +        //todo we do not need this
> +//        PhaseResolver pr = new PhaseResolver(axisconfig, serviceDesc);
> +//        pr.buildchains();
> +        // fixing the BUG AXIS2-278
> +        // we do not need to  do this , since when adding a service this automatically done

ARGH! Please remove the offending lines and put the comment in the
commit message rather than leaving dead code ..

Sanjiva.



Re: svn commit: r320644 - in /webservices/axis2/trunk/java/modules/core: src/org/apache/axis2/engine/AxisEngine.java src/org/apache/axis2/util/Utils.java webapp/Login.jsp

Posted by Sanjiva Weerawarana <sa...@opensource.lk>.
On Thu, 2005-10-13 at 04:13 +0000, deepal@apache.org wrote:
> -        pr.buildchains();
> +        //todo we do not need this
> +//        PhaseResolver pr = new PhaseResolver(axisconfig, serviceDesc);
> +//        pr.buildchains();
> +        // fixing the BUG AXIS2-278
> +        // we do not need to  do this , since when adding a service this automatically done

ARGH! Please remove the offending lines and put the comment in the
commit message rather than leaving dead code ..

Sanjiva.