You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2007/08/03 07:57:36 UTC

svn commit: r562344 - /incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java

Author: gertv
Date: Thu Aug  2 22:57:35 2007
New Revision: 562344

URL: http://svn.apache.org/viewvc?view=rev&rev=562344
Log:
Fix for SM-1014: WSDL-first example fails (unknown MEP: null)

Modified:
    incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java

Modified: incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java?view=diff&rev=562344&r1=562343&r2=562344
==============================================================================
--- incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java (original)
+++ incubator/servicemix/trunk/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java Thu Aug  2 22:57:35 2007
@@ -43,6 +43,7 @@
 import org.apache.servicemix.common.ExchangeProcessor;
 import org.apache.servicemix.common.wsdl1.JbiExtension;
 import org.apache.servicemix.common.xbean.XBeanServiceUnit;
+import org.apache.servicemix.jbi.messaging.MessageExchangeSupport;
 import org.apache.servicemix.jbi.security.auth.AuthenticationService;
 import org.apache.servicemix.jbi.security.keystore.KeystoreManager;
 import org.apache.servicemix.soap.handlers.addressing.AddressingHandler;
@@ -56,7 +57,7 @@
     protected ServiceEndpoint activated;
     protected ExchangeProcessor processor;
     protected Role role;
-    protected URI defaultMep;
+    protected URI defaultMep = MessageExchangeSupport.IN_OUT;
     protected boolean soap;
     protected String soapVersion;
     protected Resource wsdlResource;