public interface ApplicationServer
Definition:
This is a serialization that initiates in the local vm, but is outside the scope of a marked IntraVM local serialization.
Circumstances:When an IntraVM implementation of a javax.ejb.* interface is serialized outside the scope of the IntraVM Server
These serializations happen when objects are sent from a local bean to a remote client as part of a return value, or when a stateful session bean is passified. Action:Don't serialize the IntraVM javax.ejb.* interface implementation, instead ask the ApplicationServer to nominate its own implementation as a replacement. This is done via the org.apache.openejb.spi.ApplicationServer interface.
Example Scenario:
SERIALIZATION
1. ObjectOutputStream encounters an IntraVmMetaData instance
in the object graph and calls its writeReplace method.
2. The IntraVmMetaData instance determines it is being
serialized outside the scope of an IntraVM serialization
by calling IntraVmCopyMonitor.isIntraVmCopyOperation().
3. The IntraVmMetaData instance calls the getEJBMetaData
method on the ApplicationServer.
4. The IntraVmMetaData instance returns the
ApplicationServer's EJBMetaData instance from the
writeReplace method.
5. The ObjectOutputStream serializes the ApplicationServer's
EJBMetaData instance in place of the IntraVmMetaData
instance.
The deserialization of the Application Server's javax.ejb.* implementations is implementation specific.
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getBusinessObject(ProxyInfo proxyInfo) |
EJBHome |
getEJBHome(ProxyInfo proxyInfo) |
EJBMetaData |
getEJBMetaData(ProxyInfo proxyInfo) |
EJBObject |
getEJBObject(ProxyInfo proxyInfo) |
Handle |
getHandle(ProxyInfo proxyInfo) |
HomeHandle |
getHomeHandle(ProxyInfo proxyInfo) |
EJBMetaData getEJBMetaData(ProxyInfo proxyInfo)
Handle getHandle(ProxyInfo proxyInfo)
HomeHandle getHomeHandle(ProxyInfo proxyInfo)
EJBObject getEJBObject(ProxyInfo proxyInfo)
java.lang.Object getBusinessObject(ProxyInfo proxyInfo)
EJBHome getEJBHome(ProxyInfo proxyInfo)