1 17 package org.apache.geronimo.jetty6.app; 18 19 import org.apache.geronimo.webservices.WebServiceContainer; 20 21 24 public class MockWebServiceContainer implements WebServiceContainer { 25 public void invoke(Request request, Response response) throws Exception { 26 response.getOutputStream().write("Hello World".getBytes()); 27 } 28 29 public void getWsdl(Request req, Response res) throws Exception { 30 31 } 32 33 } 34 | Popular Tags |