testUtilities.javaToJS(xml));
assertNotNull(xmlResponse);
Document doc = (Document)xmlResponse.getWrappedNode();
XPath echoStringPath = new DOMXPath("//t:responseType/text()");
echoStringPath.addNamespace("t", "http://apache.org/hello_world_xml_http/wrapped/types");
String nodeText = echoStringPath.stringValueOf(echoStringPath.selectSingleNode(doc));
assertEquals(nodeText, "Hello \u05e9\u05dc\u05d5\u05dd");
}
public String getStaticResourceURL() throws Exception {
File staticFile = new File(this.getClass().getResource("test.html").toURI());