Author: mageshbk(a)jboss.com
Date: 2008-01-14 22:40:29 -0500 (Mon, 14 Jan 2008)
New Revision: 5470
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/samples/wsaddr/replyto/ClientHandler.java
Log:
[JBWS-1937]-Fixed samples test case failure due to jboss.bind.address
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/samples/wsaddr/replyto/ClientHandler.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/samples/wsaddr/replyto/ClientHandler.java 2008-01-14
13:10:49 UTC (rev 5469)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/samples/wsaddr/replyto/ClientHandler.java 2008-01-15
03:40:29 UTC (rev 5470)
@@ -77,12 +77,12 @@
}
/**
- * Get the JBoss server host from system property "jbosstest.server.host"
+ * Get the JBoss server host from system property "jboss.bind.address"
* This defaults to "localhost" if the property is not set
*/
private String getServerHost()
{
- String hostName = System.getProperty("jbosstest.server.host",
"localhost");
+ String hostName = System.getProperty("jboss.bind.address",
"localhost");
return hostName;
}
Show replies by date