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 th...@apache.org on 2006/11/12 06:50:32 UTC

svn commit: r473881 - /webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp

Author: thilina
Date: Sat Nov 11 21:50:31 2006
New Revision: 473881

URL: http://svn.apache.org/viewvc?view=rev&rev=473881
Log:
Version service call was failing due to a letter case issue...

Modified:
    webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp

Modified: webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp?view=diff&rev=473881&r1=473880&r2=473881
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/HappyAxis.jsp Sat Nov 11 21:50:31 2006
@@ -350,7 +350,7 @@
             ConfigurationContext configctx =
                     ConfigurationContextFactory.createConfigurationContextFromFileSystem(null, null);
             ServiceClient client = new ServiceClient(configctx, null);
-            EndpointReference targetEPR = new EndpointReference(IP + configctx.getServicePath() + "/version");
+            EndpointReference targetEPR = new EndpointReference(IP + configctx.getServicePath() + "/Version");
             Options options = new Options();
             client.setOptions(options);
             options.setTo(targetEPR);



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