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 sa...@apache.org on 2007/03/21 07:31:56 UTC

svn commit: r520771 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java

Author: sandakith
Date: Tue Mar 20 23:31:55 2007
New Revision: 520771

URL: http://svn.apache.org/viewvc?view=rev&rev=520771
Log:
fixing the build break, modified the depricated getLocationTemplate() with getOriginalLocation()

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java?view=diff&rev=520771&r1=520770&r2=520771
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java Tue Mar 20 23:31:55 2007
@@ -537,7 +537,7 @@
             // the operation name into this map.
             String httpLocationString = "";
             if (httpLocation != null) {
-                String httpLocationTemplete = httpLocation.getLocationTemplate();
+                String httpLocationTemplete = httpLocation.getOriginalLocation();
                 axisBindingOperation
                         .setProperty(WSDL2Constants.ATTR_WHTTP_LOCATION, httpLocationTemplete);
                 httpLocationString = RESTUtil.getConstantFromHTTPLocation(httpLocationTemplete);
@@ -715,7 +715,7 @@
             // the operation name into this map.
             String httpLocationString = "";
             if (httpLocation != null) {
-                String httpLocationTemplete = httpLocation.getLocationTemplate();
+                String httpLocationTemplete = httpLocation.getOriginalLocation();
                 axisBindingOperation
                         .setProperty(WSDL2Constants.ATTR_WHTTP_LOCATION, httpLocationTemplete);
                 httpLocationString = RESTUtil.getConstantFromHTTPLocation(httpLocationTemplete);



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