Methods Summary |
---|
protected com.sun.enterprise.jbi.serviceengine.bridge.transport.JBIAdapter$WSToolkit | createToolkit()
return new WSToolkit();
|
public java.lang.ClassLoader | getClassLoader()
return classLoader;
|
public void | handle()
WSToolkit tk = pool.take();
try {
tk.handle();
}finally {
pool.recycle(tk);
}
|
public void | handleException(java.lang.Exception ex)
con.handleException(ex);
|
private void | postInvoke()For every EJB endpoint invocation a preInvoke and postInvoke must be
called. The preInvoke is called during the creation of JBIAdapter in
JBIAdapterBuilder. The postInvoke method should be called before
returning the response back to NMR.
For non-EJB cases ejbEndPtInfo will be null.
if(ejbEndPtInfo!=null)
ejbEndPtInfo.releaseImplementor();
|