You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2008/03/06 14:39:03 UTC

svn commit: r634269 - /activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java

Author: ningjiang
Date: Thu Mar  6 05:39:02 2008
New Revision: 634269

URL: http://svn.apache.org/viewvc?rev=634269&view=rev
Log:
Fixed the build error which caused by my last commit

Modified:
    activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java

Modified: activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java?rev=634269&r1=634268&r2=634269&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java (original)
+++ activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaTcpWithInOutUsingPlainSocketTest.java Thu Mar  6 05:39:02 2008
@@ -39,7 +39,7 @@
     protected CamelContext container = new DefaultCamelContext();
 
     // use parameter sync=true to force InOut pattern of the MinaExchange
-    protected String uri = "mina:tcp://localhost:9888?textline=true&sync=true";
+    protected String uri = "mina:tcp://localhost:6333?textline=true&sync=true";
 
     public void testSendAndReceiveOnce() throws Exception {
         String response = sendAndReceive("World");
@@ -81,7 +81,7 @@
         byte buf[] = new byte[128];
 
         Socket soc = new Socket();
-        soc.connect(new InetSocketAddress("localhost", 8888));
+        soc.connect(new InetSocketAddress("localhost", 6333));
 
         // Send message using plain Socket to test if this works
         OutputStream os = null;