Author: jason.greene(a)jboss.com
Date: 2006-11-27 12:23:06 -0500 (Mon, 27 Nov 2006)
New Revision: 1523
Modified:
trunk/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java
Log:
Disable JBWS981TestCase, which is missing resources
Modified: trunk/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java
===================================================================
--- trunk/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java 2006-11-23
12:24:58 UTC (rev 1522)
+++ trunk/src/test/java/org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.java 2006-11-27
17:23:06 UTC (rev 1523)
@@ -33,9 +33,9 @@
/**
* [JBWS-981] Virtual host configuration for EJB endpoints
- *
+ *
*
http://jira.jboss.org/jira/browse/JBWS-981
- *
+ *
* @author darran.lofthouse(a)jboss.com
* @since Nov 2, 2006
*/
@@ -52,9 +52,10 @@
protected void setUp() throws Exception
{
super.setUp();
+ if (true) return;
if (port == null)
{
- URL wsdlURL = new
URL("http://localhost.localdomain:8080/jaxws-jbws981/EJB3Bean?wsdl");
+ URL wsdlURL = new URL("http://" + getServerHost() +
":8080jaxws-jbws981/EJB3Bean?wsdl");
QName serviceName = new
QName("http://www.jboss.org/test/ws/jaxws/jbws981", "TestService");
Service.create(wsdlURL, serviceName);
Service service = Service.create(wsdlURL, serviceName);
@@ -66,9 +67,8 @@
{
System.out.println("FIXME: [JBWS-981] Virtual host configuration for EJB
endpoints");
if (true) return;
-
+
String message = "hello";
assertEquals(message, port.hello(message));
}
-
-}
+}
\ No newline at end of file