JBossWS SVN: r3327 - in trunk/jbossws-core/src/test/java/org/jboss/test/ws: jaxrpc/enventry and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:46:47 -0400 (Thu, 31 May 2007)
New Revision: 3327
Modified:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/TestDeployerTomcat.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/enventry/EnvEntryHandler.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/wsaddressing/AddressingHandler.java
Log:
Fix test regression
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/TestDeployerTomcat.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/TestDeployerTomcat.java 2007-05-31 11:46:12 UTC (rev 3326)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/TestDeployerTomcat.java 2007-05-31 11:46:47 UTC (rev 3327)
@@ -111,7 +111,7 @@
private String getManagerPath() throws MalformedURLException
{
- String hostName = System.getProperty("jbosstest.server.host", "localhost");
+ String hostName = System.getProperty("jboss.bind.address", "localhost");
return "http://" + hostName + ":8080/manager";
}
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/enventry/EnvEntryHandler.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/enventry/EnvEntryHandler.java 2007-05-31 11:46:12 UTC (rev 3326)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxrpc/enventry/EnvEntryHandler.java 2007-05-31 11:46:47 UTC (rev 3327)
@@ -97,12 +97,12 @@
abstract public InitialContext getInitialContext() throws NamingException;
/**
- * 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 "" + getServerHost() + ""
*/
public String getServerHost()
{
- String hostName = System.getProperty("jbosstest.server.host", "localhost");
+ String hostName = System.getProperty("jboss.bind.address", "localhost");
return hostName;
}
}
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/wsaddressing/AddressingHandler.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/wsaddressing/AddressingHandler.java 2007-05-31 11:46:12 UTC (rev 3326)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/wsaddressing/AddressingHandler.java 2007-05-31 11:46:47 UTC (rev 3327)
@@ -32,12 +32,12 @@
public abstract class AddressingHandler extends GenericHandler
{
/**
- * 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 "" + getServerHost() + ""
*/
public String getServerHost()
{
- String hostName = System.getProperty("jbosstest.server.host", "localhost");
+ String hostName = System.getProperty("jboss.bind.address", "localhost");
return hostName;
}
}
17 years, 7 months
JBossWS SVN: r3326 - trunk/integration/spi/src/main/java/org/jboss/wsf/spi/utils.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2007-05-31 07:46:12 -0400 (Thu, 31 May 2007)
New Revision: 3326
Modified:
trunk/integration/spi/src/main/java/org/jboss/wsf/spi/utils/JavaUtils.java
Log:
Fix clearBlackLists()
Modified: trunk/integration/spi/src/main/java/org/jboss/wsf/spi/utils/JavaUtils.java
===================================================================
--- trunk/integration/spi/src/main/java/org/jboss/wsf/spi/utils/JavaUtils.java 2007-05-31 11:35:19 UTC (rev 3325)
+++ trunk/integration/spi/src/main/java/org/jboss/wsf/spi/utils/JavaUtils.java 2007-05-31 11:46:12 UTC (rev 3326)
@@ -23,12 +23,7 @@
// $Id$
-import java.lang.reflect.Array;
-import java.lang.reflect.GenericArrayType;
-import java.lang.reflect.ParameterizedType;
-import java.lang.reflect.Type;
-import java.lang.reflect.TypeVariable;
-import java.lang.reflect.WildcardType;
+import java.lang.reflect.*;
import java.util.HashMap;
import java.util.HashSet;
@@ -635,14 +630,20 @@
{
if (isJBossRepositoryClassLoader(loader))
{
- try
- {
- loader.getClass().getMethod("clearBlackLists").invoke(loader);
- }
- catch (Exception e)
- {
- if(log.isDebugEnabled()) log.debug("Could not clear blacklists on " + loader);
- }
+ for(Method m : loader.getClass().getMethods())
+ {
+ if("clearBlackLists".equalsIgnoreCase(m.getName()))
+ {
+ try
+ {
+ m.invoke(loader);
+ }
+ catch (Exception e)
+ {
+ if(log.isDebugEnabled()) log.debug("Could not clear blacklists on " + loader);
+ }
+ }
+ }
}
}
}
\ No newline at end of file
17 years, 7 months
JBossWS SVN: r3325 - trunk/build/ant-import.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:35:19 -0400 (Thu, 31 May 2007)
New Revision: 3325
Modified:
trunk/build/ant-import/build-testsuite.xml
Log:
echo jboss.bind.address
Modified: trunk/build/ant-import/build-testsuite.xml
===================================================================
--- trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:28:06 UTC (rev 3324)
+++ trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:35:19 UTC (rev 3325)
@@ -72,9 +72,9 @@
<echo/>
<echo message="-----------------------------------------------"/>
- <echo message="jboss.home = ${jboss.home}"/>
- <echo message="jboss.bind.address = ${jboss.bind.address}"/>
- <echo message="java.home = ${java.home}"/>
+ <echo message="jboss.home = ${jboss.home}"/>
+ <echo message="jboss.bind = ${jboss.bind.address}"/>
+ <echo message="java.home = ${java.home}"/>
<echo message="-----------------------------------------------"/>
<tstamp>
17 years, 7 months
JBossWS SVN: r3324 - trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:28:06 -0400 (Thu, 31 May 2007)
New Revision: 3324
Modified:
trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
Log:
Fix hostname
Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2007-05-31 11:21:50 UTC (rev 3323)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2007-05-31 11:28:06 UTC (rev 3324)
@@ -26,7 +26,7 @@
static {
URL url = null;
try {
- url = new URL("http://" + getServerHost() + ":8080/jaxws-samples-retail/ProfileMgmtBean?wsdl");
+ url = new URL("http://somehost:8080/jaxws-samples-retail/ProfileMgmtBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
17 years, 7 months
JBossWS SVN: r3323 - trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:21:50 -0400 (Thu, 31 May 2007)
New Revision: 3323
Modified:
trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
Log:
Fix hostname
Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2007-05-31 11:20:26 UTC (rev 3322)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2007-05-31 11:21:50 UTC (rev 3323)
@@ -25,7 +25,7 @@
static {
URL url = null;
try {
- url = new URL("http://" + getServerHost() + ":8080/jaxws-samples-retail/CCVerificationBean?wsdl");
+ url = new URL("http://somehost:8080/jaxws-samples-retail/CCVerificationBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
17 years, 7 months
JBossWS SVN: r3322 - trunk/build/ant-import.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:20:26 -0400 (Thu, 31 May 2007)
New Revision: 3322
Modified:
trunk/build/ant-import/build-testsuite.xml
Log:
echo jboss.bind.address
Modified: trunk/build/ant-import/build-testsuite.xml
===================================================================
--- trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:19:27 UTC (rev 3321)
+++ trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:20:26 UTC (rev 3322)
@@ -72,9 +72,9 @@
<echo/>
<echo message="-----------------------------------------------"/>
- <echo message="jboss.home = ${jboss.home}"/>
- <echo message="jboss.bind = ${jboss.bind.address}"/>
- <echo message="java.home = ${java.home}"/>
+ <echo message="jboss.home = ${jboss.home}"/>
+ <echo message="jboss.bind.address = ${jboss.bind.address}"/>
+ <echo message="java.home = ${java.home}"/>
<echo message="-----------------------------------------------"/>
<tstamp>
17 years, 7 months
JBossWS SVN: r3321 - trunk/build/ant-import.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:19:27 -0400 (Thu, 31 May 2007)
New Revision: 3321
Modified:
trunk/build/ant-import/build-testsuite.xml
Log:
echo jboss.bind.address
Modified: trunk/build/ant-import/build-testsuite.xml
===================================================================
--- trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:13:30 UTC (rev 3320)
+++ trunk/build/ant-import/build-testsuite.xml 2007-05-31 11:19:27 UTC (rev 3321)
@@ -72,8 +72,9 @@
<echo/>
<echo message="-----------------------------------------------"/>
- <echo message="jboss.home = ${jboss.home}"/>
- <echo message="java.home = ${java.home}"/>
+ <echo message="jboss.home = ${jboss.home}"/>
+ <echo message="jboss.bind = ${jboss.bind.address}"/>
+ <echo message="java.home = ${java.home}"/>
<echo message="-----------------------------------------------"/>
<tstamp>
17 years, 7 months
JBossWS SVN: r3320 - in trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples: retail/cc and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:13:30 -0400 (Thu, 31 May 2007)
New Revision: 3320
Modified:
trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/jaxr/scout/JaxrBaseTest.java
trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
Log:
Fix test regression
Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/jaxr/scout/JaxrBaseTest.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/jaxr/scout/JaxrBaseTest.java 2007-05-31 11:08:38 UTC (rev 3319)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/jaxr/scout/JaxrBaseTest.java 2007-05-31 11:13:30 UTC (rev 3320)
@@ -101,8 +101,8 @@
if (factoryClass == null || factoryClass.length() == 0)
System.setProperty(factoryString, "org.apache.ws.scout.registry.ConnectionFactoryImpl");
- String queryurl = System.getProperty("jaxr.query.url", "http://localhost:8080/juddi/inquiry");
- String puburl = System.getProperty("jaxr.publish.url", "http://localhost:8080/juddi/publish");
+ String queryurl = System.getProperty("jaxr.query.url", "http://" + getServerHost() + ":8080/juddi/inquiry");
+ String puburl = System.getProperty("jaxr.publish.url", "http://" + getServerHost() + ":8080/juddi/publish");
Properties props = new Properties();
props.setProperty("javax.xml.registry.queryManagerURL", queryurl);
Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2007-05-31 11:08:38 UTC (rev 3319)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2007-05-31 11:13:30 UTC (rev 3320)
@@ -25,7 +25,7 @@
static {
URL url = null;
try {
- url = new URL("http://localhost:8080/jaxws-samples-retail/CCVerificationBean?wsdl");
+ url = new URL("http://" + getServerHost() + ":8080/jaxws-samples-retail/CCVerificationBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2007-05-31 11:08:38 UTC (rev 3319)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2007-05-31 11:13:30 UTC (rev 3320)
@@ -26,7 +26,7 @@
static {
URL url = null;
try {
- url = new URL("http://localhost:8080/jaxws-samples-retail/ProfileMgmtBean?wsdl");
+ url = new URL("http://" + getServerHost() + ":8080/jaxws-samples-retail/ProfileMgmtBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
17 years, 7 months
JBossWS SVN: r3319 - in trunk/jbossws-core: src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 07:08:38 -0400 (Thu, 31 May 2007)
New Revision: 3319
Modified:
trunk/jbossws-core/ant-import-tests/build-testsuite.xml
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/DocWrappedServiceImpl.java
trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/WSContractProviderTestCase.java
Log:
Fix test regression
Modified: trunk/jbossws-core/ant-import-tests/build-testsuite.xml
===================================================================
--- trunk/jbossws-core/ant-import-tests/build-testsuite.xml 2007-05-31 10:43:29 UTC (rev 3318)
+++ trunk/jbossws-core/ant-import-tests/build-testsuite.xml 2007-05-31 11:08:38 UTC (rev 3319)
@@ -190,7 +190,7 @@
</taskdef>
<wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurity" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurity.HelloJavaBean"/>
- <wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurityAnnotatedpolicy" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurityAnnotatedpolicy.HelloJavaBean"/>
+ <wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurityAnnotatedpolicy" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurityAnnotatedpolicy.HelloJavaBean"/>
</target>
<target name="tests-compile-generated-resources" depends="servicegen,wstools,wsprovide">
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.java 2007-05-31 10:43:29 UTC (rev 3318)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.java 2007-05-31 11:08:38 UTC (rev 3319)
@@ -68,7 +68,7 @@
private Hello getPort() throws Exception
{
- URL wsdlURL = new File("WSProvideTask/resources/jaxws/samples/wssecurity/HelloService.wsdl").toURL();
+ URL wsdlURL = new File("wsprovide/resources/jaxws/samples/wssecurity/HelloService.wsdl").toURL();
URL securityURL = new File("resources/jaxws/samples/wssecurity/simple-encrypt/META-INF/jboss-wsse-client.xml").toURL();
QName serviceName = new QName("http://org.jboss.ws/samples/wssecurity", "HelloService");
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java 2007-05-31 10:43:29 UTC (rev 3318)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java 2007-05-31 11:08:38 UTC (rev 3319)
@@ -64,7 +64,7 @@
private Hello getPort() throws Exception
{
- URL wsdlURL = new File("WSProvideTask/resources/jaxws/samples/wssecurity/HelloService.wsdl").toURL();
+ URL wsdlURL = new File("wsprovide/resources/jaxws/samples/wssecurity/HelloService.wsdl").toURL();
URL securityURL = new File("resources/jaxws/samples/wssecurity/simple-sign/META-INF/jboss-wsse-client.xml").toURL();
QName serviceName = new QName("http://org.jboss.ws/samples/wssecurity", "HelloService");
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/DocWrappedServiceImpl.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/DocWrappedServiceImpl.java 2007-05-31 10:43:29 UTC (rev 3318)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/DocWrappedServiceImpl.java 2007-05-31 11:08:38 UTC (rev 3319)
@@ -33,7 +33,7 @@
* @since 16-Oct-2005
*/
-@WebService(endpointInterface = "org.jboss.test.ws.tools.jaxws.DocWrapped", name="DocWrapped")
+@WebService(name="DocWrapped", serviceName="DocWrappedService", endpointInterface = "org.jboss.test.ws.tools.jaxws.DocWrapped")
public class DocWrappedServiceImpl implements DocWrapped
{
// Provide logging
Modified: trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/WSContractProviderTestCase.java
===================================================================
--- trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/WSContractProviderTestCase.java 2007-05-31 10:43:29 UTC (rev 3318)
+++ trunk/jbossws-core/src/test/java/org/jboss/test/ws/tools/jaxws/WSContractProviderTestCase.java 2007-05-31 11:08:38 UTC (rev 3319)
@@ -21,6 +21,8 @@
*/
package org.jboss.test.ws.tools.jaxws;
+// $Id$
+
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
@@ -35,14 +37,13 @@
* Tests the WSContractProvider API.
*
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
- * @version $Revision$
*/
public class WSContractProviderTestCase extends JBossWSTest
{
public void testBasic() throws Exception
{
WSContractProvider gen = getGenerator();
- File outputDir = new File("tools/WSProvideTask/basic/out");
+ File outputDir = new File("tools/jaxws/wscontractprovider/basic/out");
gen.setOutputDirectory(outputDir);
gen.provide(DocWrappedServiceImpl.class);
@@ -84,7 +85,7 @@
public void testSource() throws Exception
{
WSContractProvider gen = getGenerator();
- File outputDir = new File("tools/WSProvideTask/source/out");
+ File outputDir = new File("tools/jaxws/wscontractprovider/source/out");
gen.setOutputDirectory(outputDir);
gen.setGenerateSource(true);
gen.provide(DocWrappedServiceImpl.class);
@@ -96,8 +97,8 @@
public void testSourceDir() throws Exception
{
WSContractProvider gen = getGenerator();
- File outputDir = new File("tools/WSProvideTask/sourcedir/out");
- File sourceDir = new File("tools/WSProvideTask/sourcedir/source");
+ File outputDir = new File("tools/jaxws/wscontractprovider/sourcedir/out");
+ File sourceDir = new File("tools/jaxws/wscontractprovider/sourcedir/source");
gen.setOutputDirectory(outputDir);
gen.setSourceDirectory(sourceDir);
@@ -112,7 +113,7 @@
public void testWsdl() throws Exception
{
WSContractProvider gen = getGenerator();
- File outputDir = new File("tools/WSProvideTask/wsdl/out");
+ File outputDir = new File("tools/jaxws/wscontractprovider/wsdl/out");
gen.setOutputDirectory(outputDir);
gen.setGenerateWsdl(true);
gen.provide(DocWrappedServiceImpl.class);
@@ -130,8 +131,8 @@
public void testResourceDir() throws Exception
{
WSContractProvider gen = getGenerator();
- File outputDir = new File("tools/WSProvideTask/resourcedir/out");
- File wsdlDir = new File("tools/WSProvideTask/resourcedir/wsdl");
+ File outputDir = new File("tools/jaxws/wscontractprovider/resourcedir/out");
+ File wsdlDir = new File("tools/jaxws/wscontractprovider/resourcedir/wsdl");
gen.setOutputDirectory(outputDir);
gen.setResourceDirectory(wsdlDir);
gen.setGenerateWsdl(true);
17 years, 7 months
JBossWS SVN: r3318 - trunk/jbossws-core/ant-import-tests.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-31 06:43:29 -0400 (Thu, 31 May 2007)
New Revision: 3318
Modified:
trunk/jbossws-core/ant-import-tests/build-testsuite.xml
Log:
Use jboss.bind.address
Modified: trunk/jbossws-core/ant-import-tests/build-testsuite.xml
===================================================================
--- trunk/jbossws-core/ant-import-tests/build-testsuite.xml 2007-05-31 08:24:34 UTC (rev 3317)
+++ trunk/jbossws-core/ant-import-tests/build-testsuite.xml 2007-05-31 10:43:29 UTC (rev 3318)
@@ -168,7 +168,7 @@
<copy todir="${tests.output.dir}/resources/jaxrpc/samples" overwrite="true">
<fileset dir="${tests.resources.dir}/jaxrpc/samples-override"/>
<filterset>
- <filter token="jbosstest.host.name" value="${node0}"/>
+ <filter token="jboss.bind.address" value="${node0}"/>
</filterset>
</copy>
</target>
17 years, 7 months