node.start();
// Mock up a test Web service on http://localhost:8086/wsupper
jetty = new JettyServer((ExtensionPointRegistry)nf.getExtensionPointRegistry());
jetty.start();
jetty.addServletMapping("http://localhost:8086/wsupper", new HttpServlet() {
private static final long serialVersionUID = 1L;
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
assertTrue(read(req.getInputStream()).contains("Hello SOAP"));
final String soapresp =
"<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\">" +