You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/10/03 10:24:11 UTC

svn commit: r452344 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java

Author: saminda
Date: Tue Oct  3 01:24:11 2006
New Revision: 452344

URL: http://svn.apache.org/viewvc?view=rev&rev=452344
Log:
Fixed bug in setting REST context path


Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java?view=diff&rev=452344&r1=452343&r2=452344
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContextFactory.java Tue Oct  3 01:24:11 2006
@@ -130,7 +130,7 @@
         if (restPathParam != null) {
             String restPath = ((String) restPathParam.getValue()).trim();
             if (restPath.length() > 0) {
-                configContext.setServicePath(restPath);
+                configContext.setRESTPath(restPath);
             }
         }
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org