Author: wtam
Date: Tue Feb 23 22:35:19 2010
New Revision: 915560

URL: http://svn.apache.org/viewvc?rev=915560&view=rev
Log:
Fix a bug in the unit test.  It was not invoking the route.

Modified:
    
camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CXFWsdlOnlyPayloadModeNoSpringTest.java

Modified: 
camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CXFWsdlOnlyPayloadModeNoSpringTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CXFWsdlOnlyPayloadModeNoSpringTest.java?rev=915560&r1=915559&r2=915560&view=diff
==============================================================================
--- 
camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CXFWsdlOnlyPayloadModeNoSpringTest.java
 (original)
+++ 
camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CXFWsdlOnlyPayloadModeNoSpringTest.java
 Tue Feb 23 22:35:19 2010
@@ -27,6 +27,7 @@
 import org.apache.camel.wsdl_first.Person;
 import org.apache.camel.wsdl_first.PersonImpl;
 import org.apache.camel.wsdl_first.PersonService;
+import org.apache.camel.wsdl_first.UnknownPersonFault;
 
 import org.junit.After;
 import org.junit.Before;
@@ -42,7 +43,7 @@
 
     @Before
     public void startService() {
-        endpoint = Endpoint.publish("http://localhost:8092/PersonService/";, 
new PersonImpl());
+        endpoint = Endpoint.publish("http://localhost:8093/PersonService";, new 
PersonImpl());
     }
     
     @After


Reply via email to