StackOverflowError while Persisting

I am attempting to persist several entities into a SQL Server 2005 database. However when I attempt this, I'm getting a Stackoverflow error.
INFO: EJB5018: An exception was thrown during an ejb invocation on [AssetPublisher]
Feb 21, 2008 1:58:49 PM com.sun.ejb.containers.BaseContainer postInvoke
INFO:
javax.ejb.EJBException
     at com.sun.ejb.containers.BaseContainer.processSystemException(BaseContainer.java:3869)
     at com.sun.ejb.containers.BaseContainer.completeNewTx(BaseContainer.java:3769)
     at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:3571)
     at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1354)
     at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1316)
     at com.sun.ejb.containers.EJBObjectInvocationHandler.invoke(EJBObjectInvocationHandler.java:210)
     at com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate.invoke(EJBObjectInvocationHandlerDelegate.java:117)
     at $Proxy47.addAsset(Unknown Source)
Caused by: java.lang.StackOverflowError
     at java.lang.reflect.Method.invoke(Method.java:597)
     at oracle.toplink.essentials.internal.security.PrivilegedAccessHelper.invokeMethod(PrivilegedAccessHelper.java:322)I have the session bean identified as shown below:
@PersistenceContext(unitName="jtdi_ci_EJB_PU", name="jtdi_ci_EJB_PU")
@TransactionManagement(TransactionManagementType.CONTAINER)
@Stateless(mappedName="ejb/AssetPublisher")
public class AssetPublisher implements AssetPublisherLocal,
          AssetPublisherRemote {
     @TransactionAttribute(TransactionAttributeType.REQUIRED)
     public Asset addAsset(Asset asset) throws AssetException{
          AssetEAO assetEAO = EAOFactory.JPA.getAssetEAO();
           * If an asset is not null or
           * has a asset_id equal to an empty
           * record id
           if(asset != null ||
             (asset.getAssetId() != null &&
              asset.getAssetId().intValue() == 0)){
                   asset = assetEAO.addAsset(asset);
           }else {
                throw new AssetException("Asset object is not populated correctly for adding Asset.");
          return asset;
     @TransactionAttribute(TransactionAttributeType.REQUIRED)
     public void deleteAsset(Asset asset) throws AssetException{
     @TransactionAttribute(TransactionAttributeType.REQUIRED)
     public Asset updateAsset(Asset asset) throws AssetException{
          return null;
}When I attempt to persist the data within the EAO, the error happens with the EntityManager's persist method.
Thank you for taking the time to read my post. Any suggestions would be greatly appreciated.
Russ

Gordon,
How would I verify the toplink essential settings? I know when I installed Glassfish, I used the default settings.
Here is the stack trace. It is very long. I have set the Cascading type to equal CascadeType.ALL for One-to-One and One-To-Many relationships, CascadeType.PERSIST for many-to-one relationships. The fetch attribute is set to FetchType.LAZY.
INFO:
javax.ejb.EJBException
     at com.sun.ejb.containers.BaseContainer.processSystemException(BaseContainer.java:3869)
     at com.sun.ejb.containers.BaseContainer.completeNewTx(BaseContainer.java:3769)
     at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:3571)
     at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1354)
     at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1316)
     at com.sun.ejb.containers.EJBObjectInvocationHandler.invoke(EJBObjectInvocationHandler.java:210)
     at com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate.invoke(EJBObjectInvocationHandlerDelegate.java:117)
     at $Proxy47.addAsset(Unknown Source)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:233)
     at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:152)
     at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:225)
     at jtdi.cm.ejb.bean.session.publisher.__AssetPublisherRemote_Remote_DynamicStub.addAsset(jtdi/cm/ejb/bean/session/publisher/__AssetPublisherRemote_Remote_DynamicStub.java)
     at jtdi.cm.ejb.bean.session.publisher._AssetPublisherRemote_Wrapper.addAsset(jtdi/cm/ejb/bean/session/publisher/_AssetPublisherRemote_Wrapper.java)
     at jtdi.cm.web.servlet.ConfigMngServlet.doPost(ConfigMngServlet.java:351)
     at jtdi.cm.web.servlet.ConfigMngServlet.doGet(ConfigMngServlet.java:87)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
     at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
     at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:380)
     at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
     at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
Caused by: java.lang.StackOverflowError
     at java.lang.reflect.Method.invoke(Method.java:597)
     at oracle.toplink.essentials.internal.security.PrivilegedAccessHelper.invokeMethod(PrivilegedAccessHelper.java:322)
     at oracle.toplink.essentials.internal.descriptors.MethodAttributeAccessor.getAttributeValueFromObject(MethodAttributeAccessor.java:91)
     at oracle.toplink.essentials.mappings.DatabaseMapping.getAttributeValueFromObject(DatabaseMapping.java:372)
     at oracle.toplink.essentials.mappings.ForeignReferenceMapping.getAttributeValueFromObject(ForeignReferenceMapping.java:333)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:676)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.ObjectReferenceMapping.cascadeRegisterNewIfRequired(ObjectReferenceMapping.java:681)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3226)
     at oracle.toplink.essentials.mappings.CollectionMapping.cascadeRegisterNewIfRequired(CollectionMapping.java:265)
     at oracle.toplink.essentials.internal.descriptors.ObjectBuilder.cascadeRegisterNewForCreate(ObjectBuilder.java:1294)
     at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Uncaught Java Exception while persisting the null bean at e-biz suite login

    Dear Friends,
    Recently, there was a java upgrade in my system and after that when i login to E-Biz suite, i get the following Jinitiator error and many Jinitiator windows open up with this error.
    Uncaught Java Exception while persisting the null bean
    Java.io.NotSerializableException:java.lang.thread
        at.java.io.ObjectOutputStream.outputObject(Compiled Code)
        at.java.io.ObjectOutputStream.writeObject(Compiled Code)
        at.java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:369)
        at.java.io.ObjectOutputStream.outputObject(Compiled Code)
        at.java.io.ObjectOutputStream.writeObject(Compiled Code)
        at sun.beans.ole.OleBeanInterface.saveBean(OleBeanInterface.java.508)It is very difficult to deal with many jinitiator error windows opening up.
    Could any one tell the reason for this issue and its resolution as well?
    Regards,
    Sreekanth
    Edited by: Sreekanth Munagala on Jun 14, 2012 8:49 AM
    Edited by: Sreekanth Munagala on Jun 14, 2012 8:51 AM

    Please post the details of the application release, database version and OS.
    Recently, there was a java upgrade in my system What is this upgrade? From what version to what version?
    What is your client OS/Browser?
    What is the Jinitiator version?
    and after that when i login to E-Biz suite, i get the following Jinitiator error and many Jinitiator windows open up with this error.
    Uncaught Java Exception while persisting the null bean
    Java.io.NotSerializableException:java.lang.thread
    at.java.io.ObjectOutputStream.outputObject(Compiled Code)
    at.java.io.ObjectOutputStream.writeObject(Compiled Code)
    at.java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:369)
    at.java.io.ObjectOutputStream.outputObject(Compiled Code)
    at.java.io.ObjectOutputStream.writeObject(Compiled Code)
    at sun.beans.ole.OleBeanInterface.saveBean(OleBeanInterface.java.508)It is very difficult to deal with many jinitiator error windows opening up.
    Could any one tell the reason for this issue and its resolution as well?Is the issue with all clients and all browsers?
    Have you tried to clear the jcache and the browser history files?
    Thanks,
    Hussein

  • Java.lang.StackOverflowError while accessing home page

    Why do I get java.lang.StackOverflowError while I try to call the /application url (Home page) after login. Note that before login this url was not giving any problem. Please help me out immediately, as this become crucial for our project. The part of the error stack is provided below:
    <Sep 9, 2004 12:25:03 PM IST> <Error> <HTTP> <101017> <[ServletContext(id=353527
    ,name=btwportal,context-path=/btwportal)] Root cause of ServletException
    java.lang.StackOverflowError
            at weblogic.servlet.internal.session.SessionData.getAttribute(SessionDat
    a.java:427)
            at com.bea.portal.appflow.PortalAppflowFactory.getPortalSession(PortalAp
    pflowFactory.java:148)
            at com.bea.portal.appflow.PortalAppflowFactory.createPortalSession(Porta
    lAppflowFactory.java:132)
            at com.bea.portal.appflow.PortalAppflowFactory.createPortalSession(Porta
    lAppflowFactory.java:114)
            at com.bea.portal.appflow.internal.PortalRequestImpl.getPortalSession(Po
    rtalRequestImpl.java:92)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:213)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com.bea.p13n.appflow.webflow.internal.IPProcessor.process(IPProcessor
    .java:106)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processTarg
    et(WebflowExecutorImpl.java:1234)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:746)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNode(We
    bflowExecutorImpl.java:761)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.gotoNextNod
    e(WebflowExecutorImpl.java:684)
            at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:546)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:166)
            at com.bea.portal.appflow.PortalAppflowHelper.invokeWebflow(PortalAppflo
    wHelper.java:139)
            at com.bea.portal.appflow.PortalAppflowHelper.invokePortletWebflow(Porta
    lAppflowHelper.java:216)
            at com.bea.portal.appflow.processor.PostProcessor.refreshPortlet(PostPro
    cessor.java:245)
            at com.bea.portal.appflow.processor.PostProcessor.process(PostProcessor.
    java:149)
            at com.bea.portal.appflow.processor.AbstractPortalProcessor.process(Abst
    ractPortalProcessor.java:105)
            at com

    Hi Werner.
    Its has a sevirity 2. But since its a weeked nothing will progress until monday.
    Regrading to your commect:"... I think it's related to the data to be upgraded. Because the error occurs right after NLS_LANG checking, possibly there's a relationship to this " .
    The error raised at the beggining of the upgrade. Already in second screen
    where you choose the instance you want to upgrade.
    I dought that in this early steps its already collecting information regarding to actual data.
    Can you suggest from your experience a workaround for this problem ?
    Thanks.

  • StackOverflowError while using Swing

    I am getting a StackOverflowError while designing a Swing GUI. Does anyone have an idea why this may be happening?

    Thanks for your help so far. Here is the code for the panel - I can't see what is going wrong
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TestPanel extends JFrame {
        private JLabel GPSStartLabel = new JLabel("GPS Start time");
        private JTextField GPSStartField = new JTextField();
        private JCheckBox GPSStartNSCheck = new JCheckBox("in ns");
        private JLabel GPSEndLabel = new JLabel("GPS Start time");
        private JTextField GPSEndField = new JTextField();
        private JCheckBox GPSEndNSCheck = new JCheckBox("in ns");
        public LALAppsTestPanel() {
            doLayout();
        public void doLayout()  {
            JPanel panel = new JPanel();
            setContentPane(panel);
            panel.add(GPSStartLabel);
            panel.add(GPSStartField);
            panel.add(GPSStartNSCheck);
            panel.add(GPSEndLabel);
            panel.add(GPSEndField);
            panel.add(GPSEndNSCheck);
            pack();
            setVisible(true);
    }Can anyone see what the problem is?

  • Java.lang.StackOverflowError While upgrading 9208 to 10203

    Hi,
    While upgrading 9208 to 10203 uding DBUA on windows NT im getting the following error: java.lang.StackOverflowError
    From the log:
    Thread-1366] [21:42:11:357] [SQLEngine.initialize:241] Execing SQLPLUS/SVRMGR process...
    [Thread-1366] [21:42:11:357] [SQLEngine.initialize:269] m_bReaderStarted: false
    [Thread-1366] [21:42:11:372] [SQLEngine.initialize:273] Starting Reader Thread...
    [Thread-1366] [21:42:11:372] [SQLEngine.initialize:322] Waiting for m_bReaderStarted to be true
    [Thread-1366] [21:42:11:419] [SQLEngine.reInitialize:602] Reinitializing SQLEngine...
    [Thread-1366] [21:42:11:419] [SQLEngine.getEnvParams:424] NLS_LANG: HEBREW_ISRAEL.IW8MSWIN1255
    java.lang.StackOverflowError
    Could you please help how to solve this problem ?
    Thanks

    Hi Werner.
    Its has a sevirity 2. But since its a weeked nothing will progress until monday.
    Regrading to your commect:"... I think it's related to the data to be upgraded. Because the error occurs right after NLS_LANG checking, possibly there's a relationship to this " .
    The error raised at the beggining of the upgrade. Already in second screen
    where you choose the instance you want to upgrade.
    I dought that in this early steps its already collecting information regarding to actual data.
    Can you suggest from your experience a workaround for this problem ?
    Thanks.

  • Getting Error "java.lang.StackOverflowError" while adding Strage library

    Hi
    I am getting following Error when trying to Add Static Storage Library
    java.lang.StackOverflowError
    Any Help please ...
    I am running Ops Center Verion 12c update 4 on Solaris 11
    Regards,
    Shahid

    Duplicate: Re: Get null pointer exception while selecting LOV for a parameter form object

  • StackOverflowError while displaying JNDI tree -WLS 92

    Hi,
    I have a domain with two clusters. I need to display jndi tree of one server, but when i try to do, the following error appear in the log.
    ####<Apr 28, 2008 1:43:45 PM CDT> <Warning> <netuix> <inweb2.> <posAdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1209408225440> <BEA-423420> <Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=ServerConfigGeneralTabPage&handle=com.bea.console.handles.JMXHandle%28%22com.bea%3AName%3Dpos2%2CType%3DServer%22%29.>
    ####<Apr 28, 2008 1:44:05 PM CDT> <Error> <netuix> <inweb2.> <posAdminServer> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1209408245929> <BEA-423167> <An exception or error occurred in the backing file [com.bea.jsptools.tree.JNDINavTreeBacking] while executing its preRender method. It was java.lang.StackOverflowError
    java.lang.StackOverflowError
    at java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2218)
    at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2226)
    at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2382)
    at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
    at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
    at java.io.DataInputStream.readInt(DataInputStream.java:353)
    at java.io.ObjectInputStream$BlockDataInputStream.readInt(ObjectInputStream.java:2720)
    at java.io.ObjectInputStream.readInt(ObjectInputStream.java:930)
    at java.util.ArrayList.readObject(ArrayList.java:586)
    at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:946)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1809)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
    at weblogic.rjvm.MsgAbbrevInputStream.readArrayList(MsgAbbrevInputStream.java:591)
    at weblogic.rjvm.MsgAbbrevInputStream$NestedObjectInputStream.readArrayList(MsgAbbrevInputStream.java:690)
    at weblogic.rmi.cluster.BasicReplicaList.readExternal(BasicReplicaList.java:310)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1755)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1717)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
    at weblogic.rjvm.MsgAbbrevInputStream.readObjectWL(MsgAbbrevInputStream.java:554)
    at weblogic.rjvm.MsgAbbrevInputStream$NestedObjectInputStream.readObjectWL(MsgAbbrevInputStream.java:676)
    at weblogic.rmi.cluster.BasicReplicaHandler.readExternal(BasicReplicaHandler.java:751)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1755)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1717)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
    at weblogic.rjvm.MsgAbbrevInputStream.readObjectWL(MsgAbbrevInputStream.java:554)
    at weblogic.rjvm.MsgAbbrevInputStream$NestedObjectInputStream.readObjectWL(MsgAbbrevInputStream.java:676)
    at weblogic.rmi.cluster.ClusterableRemoteRef.readExternal(ClusterableRemoteRef.java:435)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1755)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1717)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1908)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:479)
    at weblogic.rmi.internal.StubInfo.readObject(StubInfo.java:175)
    at sun.reflect.GeneratedMethodAccessor64.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:946)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1809)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.jms.client.JMSConnectionFactory.readExternal(JMSConnectionFactory.java:386)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1755)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1717)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.jndi.internal.BindingEnumeration.readExternal(BindingEnumeration.java:72)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1755)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1717)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:191)
    at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:217)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
    at weblogic.jndi.internal.ServerNamingNode_922_WLStub.listBindings(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:333)
    at javax.naming.InitialContext.listBindings(InitialContext.java:406)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:105)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAction.run(JNDITreeHelper.java:134)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.jsptools.tree.JNDITreeHelper.printContext(JNDITreeHelper.java:48)
    at com.bea.jsptools.tree.JNDITreeHelper$PrintContextAct

    Check that you do not have empty <jndi-name></jndi-name> tag in your database configuration files. Same problem happens on WLS10 if above empty tag present.

  • Java.lang.StackOverFlowError while importing existing OSM cartridge

    I'm trying to import an OSM cartridge into Design Studio 3.1.1. The import fails with java.lang.StackOverFlowError. i've tried tweaking the Java VM arguments -Xss/ -Xoss but havent had any success. Cartridge import fails with java.lang.StackOverFlowError.
    If anyone has faced similar issue and able to solve it, please let me know.
    Thanks,
    ~nagu.

    Hi,
    The error that i get is "StackOverFlowError", so it is not a heap memory issue. I did not try increasing the heap memory settings (-Xms, -Xmx). The stack overflow error seems to be coming from some sort of recursive function call. Do you still think increasing the heap memory settings might resolve the issue?
    thanks,
    ~nagu.

  • Junk Characters while persisting data with CMP beans

    Hi
    when i am entering some data and saving the data to the data base using CMP beans ,its converting the data to junk characters like ��@y some times .Do you have any idea why its happening ?pls respond asap

    whats the data type you are using ? whats the App. server, the database ?

  • NullPointerException while Inserting New  Entity in EJB 3.0

    Hi
    I have created an entity with Three underlying database tables using "SecondaryTables" annotation. I have set "insertable" property to "false" on the columns derived from secondary tables. While persisting a new entity using "EntityManager.persist(newEntity)"
    I am getting a NullPointerException.(See Stack trace below).
    Please let me know how to over come this error.
    More Info:
    If I change "insertable" property to true. It persists the new entity in all underlying tables without any error.
    java.lang.NullPointerException
    at oracle.toplink.internal.descriptors.ObjectBuilder.addPrimaryKeyForNonDefaultTable(ObjectBuilder.java:97)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildRowForTranslation(ObjectBuilder.java:607)
    at oracle.toplink.queryframework.WriteObjectQuery.prepareForExecution(WriteObjectQuery.java:142)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:492)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1968)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2222)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1096)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1048)
    at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:177)
    at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3233)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1061)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1106)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:927)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:743)

    My model is based on three database tables for which I have defined the following entity bean.
    @Entity
    @Table(name="S_ORD")
    @SecondaryTables({
    @SecondaryTable(name="S_CUSTOMER",join={@JoinColumn(name="ID", referencedColumnName="CUSTOMER_ID")}),
    @SecondaryTable(name="S_EMP",join={@JoinColumn(name="ID", referencedColumnName="SALES_REP_ID")})
    public class SOrd implements Serializable {
         private BigDecimal id;
         private Timestamp dateOrdered;
         private Timestamp dateShipped;
         private BigDecimal total;
         private String paymentType;
         private String orderFilled;
         private BigDecimal customerId;
         private String customerName;
         private BigDecimal salesRepId;
         private String salesRepName;
    I have added column annotations on getter methods of these fields.
    For Ex:
         @Id(generate=GeneratorType.SEQUENCE, generator="S_ORD_ID")
         @Column(name="ID",primaryKey=true)
         public BigDecimal getId() {
              return id;
         @Column (name="DATE_ORDERED")
         public Timestamp getDateOrdered() {
              return dateOrdered;
    and so on.
    The fields in bold and underlined are derived from secondary tables and their annotations are as below and which are causing the NullPointerException.
         @Column(name="ID",secondaryTable="S_CUSTOMER", insertable=false,updatable=false)
         public BigDecimal getCustomerId() {
              return customerId;
         @Column (name="ID",secondaryTable="S_EMP",insertable=false,updatable=false)
         public BigDecimal getSalesRepId() {
              return salesRepId;
         @Column(name="NAME",secondaryTable="S_CUSTOMER",insertable=false,updatable=false)
         public String getCustomerName() {
              return customerName;
         @Column(name="LAST_NAME", secondaryTable="S_EMP",insertable=false,updatable=false)
         public String getSalesRepName() {
              return salesRepName;
    If I make these columns from secondary tables "insertable=true,updatable=true" then, EntityManager.persist(obj); will insert rows into all three tables.
    I need to prevent inserting rows into secondary tables.
    Thank you for helping me out.
    Vikrant.

  • DAC error while assembling custom subject area as Assembly Persistence Err

    Hi Gurus
    I created a custom task using custom tables. And registered the same in infa and dac as well and then created a custom subject area and then tried assembling the same with a single custom fact got the following err. can anyone help me out of this..
    Custom_Test_Item_test - - error!
    MESSAGE:::Error while persisting sa steps.
    EXCEPTION CLASS::: com.siebel.analytics.etl.execution.ExecutionPlanInitializationException
    ::: CAUSE :::
    MESSAGE:::Error while inserting a record!
    EXCEPTION CLASS::: com.siebel.etl.gui.core.RecordManipulationException
    Any help will be much appreciated

    Hi Gurus
    I created a custom task using custom tables. And registered the same in infa and dac as well and then created a custom subject area and then tried assembling the same with a single custom fact got the following err. can anyone help me out of this..
    Custom_Test_Item_test - - error!
    MESSAGE:::Error while persisting sa steps.
    EXCEPTION CLASS::: com.siebel.analytics.etl.execution.ExecutionPlanInitializationException
    ::: CAUSE :::
    MESSAGE:::Error while inserting a record!
    EXCEPTION CLASS::: com.siebel.etl.gui.core.RecordManipulationException
    Any help will be much appreciated

  • How to persist an entity with (any) Serializable Java Object as a field?

    Hello,
    I've understood, that in addition to basic and primary types, an entity bean can have basically any serializable object as its field. I just can't get it working. All I want, is just to have an entity bean with, for example, a HashMap or Properties as one of the its fields. And afterwards, when I'd query the bean again from the persistent storage, it would have the HashMap or Properties fields set just as they were while persisting the bean. So the basic functionality.
    So far, the only way I've gotten this working, is by defining the field as byte[] and then by using ObjectInput/OutputStreams and ByteArrayInput/OutputStreams I can read/write my HashMap or Properties as a byte[] and persist the entity... Not very clever, is it :)
    I've tried to annotate the field with @Lob but it eventually ends up with casting problems when fetching the data from the persistent storage, because TopLink gets a blob, a byte array from the persistent storage and doesn't know how to convert it into HashMap or Properties like I want it to.
    This was close to mine, but still didn't get it working..
    http://forum.java.sun.com/thread.jspa?threadID=749447&messageID=4287919
    ps. Working with AS PE9, MySQL and PostgreSQL..
    Best regards,
    Samuli

    Hello,
    Sorry, I'm not sure what you mean. The ID used for the entity does not need to match the actual database constraints, so you can use any mapping in the entity as the ID as long as its value will be unique. If it is not unique, you will run into problems when EclipseLink thinks the entity already exists, performing an update instead of an insert.
    Can you describe the performance problems you are having, and what type of sequencing you are using? It is possible to improve performance using batch writing and sequence pre-allocation.
    See http://wiki.eclipse.org/Optimizing_the_EclipseLink_Application_(ELUG)#How_to_Use_Batch_Writing_for_Optimization
    and http://wiki.eclipse.org/Optimizing_the_EclipseLink_Application_(ELUG)#Table_11-11 for some of the options available.
    Best Regards,
    Chris

  • Critical Error in the Enterprise Server

    I am having a critical error in my process in the Enterprise Server.. It works fine inside Studio.. The following is the error:-
    Error while persisting the transaction data: 'An error occurred while accesing the database. Detail:SQL statement: 'unknown' ' Details: An error occurred while accesing the database. Detail:SQL statement: 'unknown' Caused by: Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Transaction timed out after 32 seconds BEA1-058A537B20F95C8E0272 at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1418) at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1330) at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:189) at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:64) at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:92)
    It also complains the following :-
    Process '/TestProcess#Default-1.0@Test' was not found in the Directory Service: 'oracle'
    Detail:Verify that the Directory Service is working properly and that the process is correctly deployed.
    Consider that Oracle J2EE Engines require referral configuration to communicate.
    But the process has been completely deployed..
    What could be the possible problem?
    Any answer anybody?
    This is urgent..

    It seems that some execution is taking longer than 30 seconds (default JTA timeout)
    You should increase the WLS JTA Timeout.
    Hope this helps,
    Ariel

  • Prime infrastructure 2.0 - Inventory error with Virtual-Access Interface

    Hi,
    We have recently been trying to resolve a few issues with routers which get partial inventory failures upon discovery. I have managed to narrow this down slightly with the help of the inventory.log file. (With help from this post https://supportforums.cisco.com/thread/2255346 ) I have found the following happnes when this device is added:
    [2014-03-04 14:00:27,537] [ICE Service[ 1]Thread: 29] [inventory] [ERROR] - 172.16.3.202 Object detected as SAME but DB Object obtained from the database is NULL For instance id: 0 For generated POJO: PPPEncapsulation[callBack=false,callIn=false,callOut=false,multilink=false,name=Virtual-Access1,oneTime=false,owningEntityId=69757688_172.16.3.202,preferedAuthType=NONE,deployPending=NONE,name=Virtual-Access1,owningEntityId=69757688_172.16.3.202,instanceId=0,_orderedListOEIndex=<Integer>,_creationOrderIndex=<Integer>,instanceVersion=0]
    I have highlighted above where it mentions the problem with the virtual access interface. The configuration on the router is for PPPoE and the virtual-access1 interface is bound to Dialer0.
    It then goes on to roll back the transaction:
    172.16.3.202 persistObjects called with addList size = 307, updateList size = 6
    172.16.3.202 Exception while persisting: com.cisco.xmp.persistence.common.util.DMMCRUDException:,message=errorId=12,componentName=CRUD Error Create Object Failed
    172.16.3.202 Exception occured while inventory collection for device with id 69757688: com.cisco.xmp.inventory.ice.InventoryException: errorId=12,componentName=CRUD Error Create Object Failed
    172.16.3.202 Done with collection. Total call method time: 15308
    172.16.3.202 Rolling back the transaction
    Has anyone else come accross this issue?
    I have attched the log showing just messages from this device.
    Thanks,
    Mike.

    TAC and I found a bug, CSCum05301.
    May be that is also helpfull for others.
    https://tools.cisco.com/bugsearch/bug/CSCum05301/
    Symptom:
    Inventory collection will fail if following keywords are used as part on description command on the interface config level of IOS device: 1Gbps, 10Mbps etc.
    Following error message is visible on the DWC:
    Inventory Collection Status: Partial Collection Failure
    Collection Status     Failed feature(s)
    Unable to configure DSL, Serial, POS, Ethernet, Loopback, Virtual-Interface, Tunnel, Vlan, Switchport and Service Module interfaces on ISR, ASR and Switches.
    Conditions:
    Speed keywords like 1Gbps, 10Mbps etc. available as part of descrption command in IOS interface level.
    For example:
    interface FastEthernet0/3
    description 10Mbps
    Workaround:
    Use a space character between number and unit keyword, like 1 Gbps.

  • My experience migrating Kodo 3.4 to 4.1

    Hello Stefan,
    I struggled with Kodo 4.0 and gave it up. Kodo 4.1 seems to be a much better
    release. I migrated my app in a day. First I managed to run it against 3.4
    metadata with some property file changes (migration docs are not very good
    and miss few things but may be if you use Kodo automated migration tools it
    will do for you what I was doing manually) . If you use lots of custom
    filed mappings (especially non-trivial mappings) allocate much more time for
    conversion - the whole thing has changed. I have not had chance to convert
    my mapping and had to bandate it with externalizers and other things for
    now. One thing you lose in kodo3.4 mode is ability to query by interface
    since now it must be explicetly.
    Couple of tips here
    - kodo.Log: kodo(DefaultLevel=INFO, SQL=TRACE...) kodo is no longer valid
    logger name
    - kodo.jdbc.DBDictionary: oracle(BatchLimit=30) BatchLimit=30 is no longer a
    valid option use
    kodo.jdbc.SQLFactory: (BatchLimit=50) instead
    - kodo.PersistentClasses= ... is no longer works use
    kodo.MetaDataFactory: kodo3(Types=....) in kodo3 mode or
    kodo.MetaDataFactory: (Types=...) in jdo2 mode
    - Any SQL with DATE column is no longer batched leading to 2-3 times
    performance drop. The decision swa made based on bugs in oracle 9 drivers in
    batching mode. If you have latest drivers (and database) from my experience
    you will not have any problems. So to reenable it you can register your own
    instance of AdvancedSQL (now a factored out part of DatabaseDictionary):
    kodo.jdbc.SQLFactory: (BatchLimit=50,
    AdvancedSQL=com.peacetech.jdo.kodo.kodo4.patch.OracleAdvancedSQL)
    where OracleAdvancedSQL could look like:
    public class OracleAdvancedSQL extends kodo.jdbc.sql.OracleAdvancedSQL {
    @Override public boolean canBatch(Column col) {
    switch (col.getType()) {
    case Types.DATE:
    return true;
    default:
    return super.canBatch(col);
    - I have not tested read performance much since I was concentrating on
    writes. But write performance even with batch enabled does not seems to be
    not up to 3.4 level I observed a consistent 30-40% decrease in performance
    while persisting large graph complex of fairly small objects. I ran 3.4 and
    4.1 versions side by side against a dedicated Oracle 10 server and noticed
    performance decrease of 30-40%
    SQL generated by both versions was very close if not identical (I only did
    spotcheck) but incase of INSERT you would not expect it any different anyway
    I tried profiling 4.1 version and found some significant hot spots but could
    not dechipher them in any reasonable time because of huge depth of stacks
    and lack of source code. I might try it again if I have time because
    performance is critical for us.
    - I have not tried any new/advanced features yet. including new mappings,
    detachment, data cache, quality of eager fetch so I can not give you any
    good feedback on that. At least I can say that this release worth trying -
    after migration my application worked as expected except for lower
    performance
    I also have to say I do not know how well automated migration of kodo 3.4
    metadata to jdo2 metadata works (if it exists) because I use my model driven
    code generator and I just developed JDO2 plugin for it and regenerated my
    metadata from the model (I did not have to gegenerate my java classes of
    course)
    Alex
    Then I created native JDO2 mappings and everything

    Denis,
    Could you email it to me please shurik at peacetech dot com
    Thanks
    Alex
    "Denis Sukhoroslov" <[email protected]> wrote in message
    news:[email protected]...
    Alex,
    The issue was in version 3.4.1. BEA has provided a patch, no new version.
    Denis.
    "Alex Roytman" <[email protected]> wrote in message
    news:[email protected]...
    Denis,
    In which version did you observe it and which version fixed it?
    Thank you
    Alex
    "Denis Sukhoroslov" <[email protected]> wrote in message
    news:[email protected]...
    I don't know, I didn't tried 4.1 yet. It is possible that this issue
    was'n exist in kodo 4.x at all.
    "Christiaan" <[email protected]> wrote in message
    news:[email protected]...
    Nice! Is it also solved for 4.1?
    regards,
    Christiaan
    "Denis Sukhoroslov" <[email protected]> wrote in message
    news:[email protected]...
    Finally, BEA has solved the issue I mentioned. Reading cached PCs
    which have embedded objects become much faster (about 10 times in my
    tests).
    Thank you very much to all why was involved in this job.
    Denis.
    "Denis Sukhoroslov" <[email protected]> wrote in message
    news:[email protected]...
    Hi Alex,
    I know about default-fetch-group, of course I marked these embedded
    fields properly. You're right, it is not a cache miss but an
    unnecessary fetch from DB. It's strange that nobody has found this
    before. I managed to create a stanalone test case and send it to BEA
    support. They agree that it is a bug, but still can't fix the issue.
    The test is quite small, so if anyone interested I can send it here.
    Denis.
    "Alex Roytman" <[email protected]> wrote in message
    news:[email protected]...
    Hi Denis,
    That's very strange. All custom fields such enums etc. are
    essentially mapped onto regular JDO mandated types. I use it all the
    time and have not observed this behavior but I might have missed it
    of course. I have a suspicion that what you are seeing is not cache
    misses but rather fetches outside of default fetch group. Keep in
    mind that Kodo does not fetch any custom field as part of default
    fetch group unless you explicetly specified it in your package.jdo
    So, try to mark all your custom mapped fields with
    default-fetch-group="true" and I suspect all your extra database
    selects will disspear.
    Read speed, inded, is always the critical part. I just have not had
    chance to play with 4.1 reads enough to say if it is faster or
    slower. There are more ways to optimize reads (various flavors of
    eager fetches, cutom optimized mapping of collections including
    embedding ...) but very few optimizations for updates
    Alex
    "Denis Sukhoroslov" <[email protected]> wrote in message
    news:[email protected]...
    Hi Alex.
    My question is out of this topic, but it looks like you may have an
    answer. BEA support did nothing for the last few months.
    We still use kodo 3.4.1. DB is Sybase 12.5.x. In our app we're very
    concerned on performance as well. But, we do have much more reads
    then writes. So, we're trying to cache as much as possible. Kodo
    distributed cache works quite good. At least, it presents better
    performance then Gemfire and Tangosol, on the same use cases. But
    we found a bug in its caching mechanism: when you have a persistent
    class and this class has an embedded attribute of some
    non-primitive type (like enum or just a simple complex type with
    one or two attributes in it) kodo bypasses cache and performs a
    select to DB each time. Have you seen this? Is it possible to solve
    via custom mapping, what do you think?
    Thanks. Denis.
    "Alex Roytman" <[email protected]> wrote in message
    news:[email protected]...
    Hello Stefan,
    I struggled with Kodo 4.0 and gave it up. Kodo 4.1 seems to be a
    much better release. I migrated my app in a day. First I managed
    to run it against 3.4 metadata with some property file changes
    (migration docs are not very good and miss few things but may be
    if you use Kodo automated migration tools it will do for you what
    I was doing manually) . If you use lots of custom filed mappings
    (especially non-trivial mappings) allocate much more time for
    conversion - the whole thing has changed. I have not had chance to
    convert my mapping and had to bandate it with externalizers and
    other things for now. One thing you lose in kodo3.4 mode is
    ability to query by interface since now it must be explicetly.
    Couple of tips here
    - kodo.Log: kodo(DefaultLevel=INFO, SQL=TRACE...) kodo is no
    longer valid logger name
    - kodo.jdbc.DBDictionary: oracle(BatchLimit=30) BatchLimit=30 is
    no longer a valid option use
    kodo.jdbc.SQLFactory: (BatchLimit=50) instead
    - kodo.PersistentClasses= ... is no longer works use
    kodo.MetaDataFactory: kodo3(Types=....) in kodo3 mode or
    kodo.MetaDataFactory: (Types=...) in jdo2 mode
    - Any SQL with DATE column is no longer batched leading to 2-3
    times performance drop. The decision swa made based on bugs in
    oracle 9 drivers in batching mode. If you have latest drivers (and
    database) from my experience you will not have any problems. So to
    reenable it you can register your own instance of AdvancedSQL (now
    a factored out part of DatabaseDictionary):
    kodo.jdbc.SQLFactory: (BatchLimit=50,
    AdvancedSQL=com.peacetech.jdo.kodo.kodo4.patch.OracleAdvancedSQL)
    where OracleAdvancedSQL could look like:
    public class OracleAdvancedSQL extends
    kodo.jdbc.sql.OracleAdvancedSQL {
    @Override public boolean canBatch(Column col) {
    switch (col.getType()) {
    case Types.DATE:
    return true;
    default:
    return super.canBatch(col);
    - I have not tested read performance much since I was
    concentrating on writes. But write performance even with batch
    enabled does not seems to be not up to 3.4 level I observed a
    consistent 30-40% decrease in performance while persisting large
    graph complex of fairly small objects. I ran 3.4 and 4.1 versions
    side by side against a dedicated Oracle 10 server and noticed
    performance decrease of 30-40%
    SQL generated by both versions was very close if not identical (I
    only did spotcheck) but incase of INSERT you would not expect it
    any different anyway :-)
    I tried profiling 4.1 version and found some significant hot spots
    but could not dechipher them in any reasonable time because of
    huge depth of stacks and lack of source code. I might try it
    again if I have time because performance is critical for us.
    - I have not tried any new/advanced features yet. including new
    mappings, detachment, data cache, quality of eager fetch so I can
    not give you any good feedback on that. At least I can say that
    this release worth trying - after migration my application worked
    as expected except for lower performance
    I also have to say I do not know how well automated migration of
    kodo 3.4 metadata to jdo2 metadata works (if it exists) because I
    use my model driven code generator and I just developed JDO2
    plugin for it and regenerated my metadata from the model (I did
    not have to gegenerate my java classes of course)
    Alex
    Then I created native JDO2 mappings and everything

Maybe you are looking for