Author: keith
Date: Mon Jul  7 22:05:29 2008
New Revision: 18936
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=18936

Log:
Updating the Patch to address Mashup-902


Modified:
   
trunk/mashup/java/modules/patches/axis2/src/org/apache/axis2/description/AxisEndpoint.java

Modified: 
trunk/mashup/java/modules/patches/axis2/src/org/apache/axis2/description/AxisEndpoint.java
URL: 
http://wso2.org/svn/browse/wso2/trunk/mashup/java/modules/patches/axis2/src/org/apache/axis2/description/AxisEndpoint.java?rev=18936&r1=18935&r2=18936&view=diff
==============================================================================
--- 
trunk/mashup/java/modules/patches/axis2/src/org/apache/axis2/description/AxisEndpoint.java
  (original)
+++ 
trunk/mashup/java/modules/patches/axis2/src/org/apache/axis2/description/AxisEndpoint.java
  Mon Jul  7 22:05:29 2008
@@ -185,12 +185,13 @@
                                        String ip = 
HttpUtils.getIpAddress(axisConfiguration);
                                        // we should pass 
[serviceName].[endpointName] instead of
                                        // [endpointName]
-                                       String sDOTe = serviceName + "." + name 
+ "/";
+                                       String sDOTe = serviceName + "." + name;
                                        EndpointReference[] eprsForService = 
listener
                                                        
.getEPRsForService(sDOTe, ip);
                                        // we consider only the first address 
return by the listener
                                        if (eprsForService != null && 
eprsForService.length > 0) {
-                                               return 
eprsForService[0].getAddress();
+                                           String address = 
eprsForService[0].getAddress();
+                                               return address  + "/";
                                        }
                                } catch (SocketException e) {
                                        logger.warn(e.getMessage(), e);

_______________________________________________
Mashup-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to