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.
Note: The ApplicationServer's EJBMetaData instance can be any object that implements the javax.ejb.EJBMetaData interface and can also implement any serialization methods, such as the writeReplace method, to nominate a replacement or implement protocol specific logic or otherwise gain control over the serialization of EJBMetaData instances destined for its remote clients.
DESERIALIZATION
The deserialization of the Application Server's javax.ejb.* implementations is implementation specific.
@version $Revision: 534559 $ $Date: 2007-05-02 12:29:36 -0500 (Wed, 02 May 2007) $
NewsServer
is a Singleton that serves HTML for a request of News. A Browser can navigate to a local URL with Port 8795 and use some special parameters to request either a List of News or complete Feeds. TODO As more and more stuff is handled by this server, it should be considered to make it extensible by allowing to register handlers for certain operations.
@author bpasero
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|