Author: ffang
Date: Tue Nov 10 08:17:37 2009
New Revision: 834382
URL: http://svn.apache.org/viewvc?rev=834382&view=rev
Log:
[SMXCOMP-671]should defer start org.apache.cxf.endpoint.Server to cxf bc
consumer start method
Modified:
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java
Modified:
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java
URL:
http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java?rev=834382&r1=834381&r2=834382&view=diff
==============================================================================
---
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java
(original)
+++
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java
Tue Nov 10 08:17:37 2009
@@ -314,7 +314,6 @@
registerListServiceHandler();
applyFeatures();
checkJmsTransportTransaction();
- server.start();
} catch (Exception ex){
super.deactivate();
throw ex;
@@ -367,6 +366,7 @@
@Override
public void start() throws Exception {
+ server.start();
super.start();
this.started = true;
}