Author: gertv
Date: Thu Aug  2 23:11:06 2007
New Revision: 562351

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

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

Modified: 
incubator/servicemix/branches/servicemix-3.1/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/branches/servicemix-3.1/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java?view=diff&rev=562351&r1=562350&r2=562351
==============================================================================
--- 
incubator/servicemix/branches/servicemix-3.1/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java
 (original)
+++ 
incubator/servicemix/branches/servicemix-3.1/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java
 Thu Aug  2 23:11:06 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;


Reply via email to