You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/07/28 14:14:48 UTC

svn commit: r1151809 - /tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java

Author: antelder
Date: Thu Jul 28 12:14:47 2011
New Revision: 1151809

URL: http://svn.apache.org/viewvc?rev=1151809&view=rev
Log:
Comment out the conversion of the remote wsdl into a WSDLInterfaceContract in the beta3 branch as that code doesn't work properly yet

Modified:
    tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java

Modified: tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java?rev=1151809&r1=1151808&r2=1151809&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta3/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeEndpointImpl.java Thu Jul 28 12:14:47 2011
@@ -1064,7 +1064,7 @@ public class RuntimeEndpointImpl extends
         }
         InterfaceContract ic = getComponentServiceInterfaceContract();
         if (ic != null) {
-            ic.setNormalizedWSDLContract(WSDLHelper.createWSDLInterfaceContract(registry, wsdl));
+            // ic.setNormalizedWSDLContract(WSDLHelper.createWSDLInterfaceContract(registry, wsdl));
         }
     }