package com.sun.xml.ws.transport.http.servlet; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; public class SampleServlet extends HttpServlet { private WSServletDelegate delegate; public void init(ServletConfig servletConfig) throws ServletException { super.init(servletConfig); // List a = new ArrayList(); delegate = new WSServletDelegate(null,getServletContext()); } }