private volatile ServletWebServiceDelegate myDelegate_=null;
public void init(ServletConfig servletConfig) throws ServletException {
try {
super.init(servletConfig);
JaxRpcObjectFactory rpcFactory = JaxRpcObjectFactory.newInstance();
delegate_ =
(ServletDelegate) rpcFactory.createServletDelegate();
myDelegate_ = new ServletWebServiceDelegate(delegate_);
delegate_.setSecondDelegate(myDelegate_);
delegate_.init(servletConfig);
} catch (ServletException e) {
throw e;