Index: XFireServletTest.java =================================================================== RCS file: /home/projects/xfire/scm/xfire/xfire-core/src/test/org/codehaus/xfire/transport/http/XFireServletTest.java,v retrieving revision 1.15 diff -u -r1.15 XFireServletTest.java --- XFireServletTest.java 6 May 2005 23:21:31 -0000 1.15 +++ XFireServletTest.java 31 May 2005 19:31:52 -0000 @@ -72,7 +72,17 @@ public void testServlet() throws Exception { - WebResponse response = newClient().getResponse("http://localhost/services/Echo?wsdl"); + WebRequest getReq = new GetMethodWebRequest("http://localhost/services/Echo?wsdl"){ + + /* Work around bug 1212204 in httpUnit where as of 1.6 + * there was not a way to support query strings with null values. + * @see com.meterware.httpunit.HeaderOnlyWebRequest#getQueryString() + */ + public String getQueryString() { + return "WSDL"; + } + }; + WebResponse response = newClient().getResponse(getReq); WebRequest req = new PostMethodWebRequest("http://localhost/services/Echo", getClass().getResourceAsStream("/org/codehaus/xfire/echo11.xml"),