Author: darran.lofthouse(a)jboss.com
Date: 2007-06-18 09:51:57 -0400 (Mon, 18 Jun 2007)
New Revision: 3615
Modified:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws860/JBWS860TestCase.java
Log:
JBWS-1093 - Deploying a war that also contains normal servlets the web.xml is modified as
if they are all endpoints.
Re-enable test as previous failure has been corrected.
Modified:
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws860/JBWS860TestCase.java
===================================================================
---
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws860/JBWS860TestCase.java 2007-06-18
13:33:07 UTC (rev 3614)
+++
trunk/jbossws-core/src/test/java/org/jboss/test/ws/jaxws/jbws860/JBWS860TestCase.java 2007-06-18
13:51:57 UTC (rev 3615)
@@ -58,13 +58,7 @@
}
public void testServletAccess() throws Exception
- {
- if (true)
- {
- System.out.println("FIXME: [JBAS-4210] HTTP request dispatched to the wrong
servlet");
- return;
- }
-
+ {
HttpURLConnection con = (HttpURLConnection)new URL("http://" +
getServerHost() + ":8080/test/TestServlet").openConnection();
BufferedReader isr = new BufferedReader(new
InputStreamReader(con.getInputStream()));
assertEquals("Hello", isr.readLine());
Show replies by date