summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-02-17 19:16:15 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-02-17 19:16:15 +0000
commitcfb39602a8bf97742fc1c45f8ec3250c16c9364a (patch)
treeca348276d9c38ce9b51bec9098903aa455b8ad45 /branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java
parent5c388638dd34050cf13bb62cd9b8551292cc4e79 (diff)
Fix for TUSCANY-2854: remove the use of "tempuri.org"
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@745197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java b/branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java
index 21bdff4011..0a767ee1f1 100644
--- a/branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java
+++ b/branches/sca-java-1.x/samples/binding-echo/src/main/java/echo/EchoBindingClient.java
@@ -41,7 +41,7 @@ public class EchoBindingClient {
// Call the echo server. This will dispatch the call to a service with an
// echo binding. The echo binding will pass the call to the echo component.
- echoString = EchoServer.getServer().sendReceive("http://tempuri.org", "bar");
+ echoString = EchoServer.getServer().sendReceive("http://example.com/temp", "bar");
System.out.println("Echo service = " + echoString );
scaDomain.close();