Author: richard_opalka
Date: 2007-08-15 08:00:40 -0400 (Wed, 15 Aug 2007)
New Revision: 4372
Modified:
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointTestCase.java
Log:
[JBWS-1770] enabling the test for JBoss5 because it passes now
Modified:
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointTestCase.java
===================================================================
---
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointTestCase.java 2007-08-15
11:50:36 UTC (rev 4371)
+++
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointTestCase.java 2007-08-15
12:00:40 UTC (rev 4372)
@@ -77,12 +77,6 @@
public void testWSDLAccess() throws MalformedURLException
{
- if (isTargetJBoss50())
- {
- System.out.println("FIXME: [JBWEB-1770] Fix Endpoint API for
jboss-5.0.0.Beta3");
- return;
- }
-
URL wsdlURL = new URL("http://" + getServerHost() +
":8080/jaxws-endpoint?wsdl");
WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
@@ -91,12 +85,6 @@
public void testClientAccess() throws Exception
{
- if (isTargetJBoss50())
- {
- System.out.println("FIXME: [JBWEB-1770] Fix Endpoint API for
jboss-5.0.0.Beta3");
- return;
- }
-
// Create the port
URL wsdlURL = new
File("resources/jaxws/endpoint/WEB-INF/wsdl/TestService.wsdl").toURL();
QName qname = new QName("http://org.jboss.ws/jaxws/endpoint",
"TestService");
@@ -110,15 +98,8 @@
public void testServletAccess() throws Exception
{
- if (isTargetJBoss50())
- {
- System.out.println("FIXME: [JBWEB-1770] Fix Endpoint API for
jboss-5.0.0.Beta3");
- return;
- }
-
URL url = new URL("http://" + getServerHost() +
":8080/jaxws-endpoint-servlet?param=hello-world");
BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()));
assertEquals("hello-world", br.readLine());
-
}
}