Remote activation exception

Hi,
I have an rmi server registered with the rmi registry for remote activation. I get the following error when activated.
I started rmid in debug mode using the following command:
rmid -port 9242 -log c:\temp\rmid.log -J-Djava.security.policy="c:\temp\java.policy" -J-Dsun.rmi.log.debug=true -J-Dsun.rmi.server.activation.debugExec=true -J-Dsun.rmi.dgc.logLevel=10 -J-Dsun.rmi.dgc.logLevel=10 -J-Dsun.rmi.loader.logLevel=10 -J-Djava.class.path=C:\\temp\\test1.jar;C:\\temp\\wasspi_jmx_JSpiCola.jar;C:\\temp\\wasspi_JSpiCola.jar;C:\\temp\\castor.jar;C:\\temp\\xalan.jar;C:\\temp\\xerces.jar;C:\\temp\\log4j-1.2.15.jar
output:
May 12, 2009 6:46:13 PM sun.rmi.server.LoaderHandler loadClass
FINE: main: name = "sun.rmi.server.Activation$DefaultExecPolicy", codebase = ""
log.debug: recover()
log.debug: recovering from c:\temp\rmid.log\Snapshot.1
May 12, 2009 6:46:13 PM sun.rmi.server.LoaderHandler loadClass
FINE: main: name = "sun.rmi.server.Activation", codebase = ""
May 12, 2009 6:46:13 PM sun.rmi.server.LoaderHandler loadClass
FINE: main: name = "java.util.HashMap", codebase = ""
log.debug: reading updates from c:\temp\rmid.log\Logfile.1
log.debug: rdUpdate size 1436
FINE: RMI TCP Connection(2)-15.154.106.14: name = "java.rmi.activation.ActivationID", codebase = ""
May 12, 2009 6:46:20 PM sun.rmi.server.LoaderHandler loadClass
FINE: RMI TCP Connection(2)-15.154.106.14: name = "java.rmi.server.UID", codebase = ""
rmid: debugExec: running "C:\temp\JDK\bin\java.exe -Djava.class.path=C:\temp\test1.jar;C:\temp\w
asspi_jmx_JSpiCola.jar;C:\temp\wasspi_JSpiCola.jar;C:\temp\castor.jar;C:\temp\xalan.jar;C:\temp\xerc
es.jar;C:\temp\log4j-1.2.15.jar -Djava.security.policy=c:\temp\java.policy sun.rmi.server.Activation
GroupInit"
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err:Exception in starting ActivationGroupInit:
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err:java.io.StreamCorruptedException: invalid streamheader
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err: at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:768)
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err: at java.io.ObjectInputStream.<init>(ObjectInputStream.java:283)
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err: at sun.rmi.server.MarshalInputStream.<init>(MarshalInputStream.java:122)
Tue May 12 18:46:21 GMT+05:30 2009:ExecGroup-0:err: at sun.rmi.server.ActivationGroupInit.main(ActivationGroupInit.java:63)
Here is the server class:
collectorAndServerProps.put("java.security.policy", "c:\\temp\\java.policy");
collectorAndServerProps.put("java.class.path", "C:\\temp\\test1.jar;C:\\temp\\wasspi_jmx_JSpiCola.jar;C:\\temp\\wasspi_JSpiCola.jar;C:\\temp\\castor.jar;C:\\temp\\xalan.jar;C:\\temp\\xerces.jar;C:\\temp\\log4j-1.2.15.jar");
String javaCommand = "C:\\temp\\JDK\\bin\\java.exe";
String srcURL = "file:///c:/temp/wasspi_jmx_JSpiCola.jar";
ActivationGroupDesc.CommandEnvironment cmdEnv = new ActivationGroupDesc.CommandEnvironment(javaCommand, null);
ActivationGroupDesc groupDesc = new ActivationGroupDesc(collectorAndServerProps, cmdEnv);
ActivationGroupID groupID = ActivationGroup.getSystem().registerGroup(groupDesc);
MarshalledObject args = new MarshalledObject(bindName);
ActivationDesc desc = new ActivationDesc(groupID, "com.hp.openview.wasspi.collector.rmi.RemoteJSpiColaImpl", srcURL, args);
RemoteJSpiCola jSpiColaStub = (RemoteJSpiCola) Activatable.register(desc);
Registry reg = LocateRegistry.getRegistry(Integer.parseInt(rmidPort));
reg.rebind(bindName, jSpiColaStub);
RemoteJSpiCola remoteJSpiCola = (RemoteJSpiCola) Naming.lookup(url);
remoteJSpiCola.getData(argv);
Any clues?
Thanks,
Thiyagu

Looks like rmid.log is corrupt.
Your server class shouldn't do its own registration. That causes the rmid.log file to grow every time you start it. You should have a separate registration program that you only run once, and serializes the activatable stub to a file, and another program that runs every system startup that reads that file and binds the stub to the registry. That will conserve the size of the rmid.log file and also eliminate most writing to it, which is when corruption can occur.

Similar Messages

  • "transaction is no longer active" exception.... why?

    I'm trying to get a transaction working with my control, but I keep getting the following SQL exception:
    "The transaction is no longer active - status: 'Committed'. No further JDBC access is allowed within this transaction."
    I have a main jdbc controller that calls other jdbc controlers. The method in the main controller has the following annotation:
    @TransactionAttribute(value=TransactionAttributeType.REQUIRES_NEW, rollbackOnCheckedException=true)
    Then anootation on the methods in the subcontroler:
    @TransactionAttribute(value=TransactionAttributeType.REQUIRED, rollbackOnCheckedException=true)
    I try to call the method in the second controller twice from the main controller. The first time I have it inserts a record into the database and the second time it causes an exception (on purpose for testing the rollback). But instead of rolling back the first record gets inserted into the database and the second record causes the "transaction is no longer active" exception.
    What am I doing wrong?

    Thanks Vimala,
    I did look at it and I'm using it to simulate the same thing I'm trying to do. Here is what I did:
    I changed the insertGroup method in the CustomControlImpl.java file to the following:
    @TransactionAttribute(value=TransactionAttributeType.REQUIRES_NEW,rollbackOnCheckedException=true)     
    public void insertGroup(String name, String description) throws SQLException
    try{
    int result = dataControl.insertGroup("1","1");
    result = dataControl.insertGroup("This name is way too long and will cause an exception","2");
    }catch(SQLException e){
    System.out.println("**************** Throwing sql exception");
    throw e;
    I would like the excepion caused by the second insert to rollback everything in the try block and as a result nothing will be inserted int the database. Can this be done?
    Edited by cerlendson at 09/11/2007 9:45 AM
    Edited by cerlendson at 09/11/2007 10:12 AM

  • Remote activation in different Clients of R/3 system

    Hi
    I am trying to do CubeServ BW case study from SAP Business Intelligence book. I am logged in BW system and the exercise requires transfer of Data Source Object from BI Content. When I try this step I am prompted with "Remote activation in the Source System E61CLNT050" message followed by login window. I have access to Client51 of R/3 system. But when I check for available source systems, E61CLNT051 and E61CLNT052 are available but there is no E61CLNT051. So I am stuck at this step.
    Is there a way to add or (switch to ) E61CLNT051 and continue with other steps?
    Thanks in advance.
    Sundar

    Hi Dili,
    This is due to Source System Configuration done in TCodes SALE and SM59. You also have to note that while defining the systems, they should be defined as Trusted System so that the User Authentication screen doesnt come up.
    Regards,
    Tom.

  • Business Content Installation with Remote Activation

    Hi
       During Business Content Installation, BI system attempts to do Remote Activation in the Source System
      But in my case, it's searching for the datasources in the ERP source system instead of the CRM system
      How do I get the Business Content to look into the right CRM system
      Also, do I have to manually build the transfer rules of InfoSource to DataSource ? At the moment, I don`t have InfoSource automatically mapped to DataSource

    Hi, before collecting the datasource to the right you have to select the source system by one of the following ways:
    1) press Shift F7
    2) click on the source system icon on top
    3) goto menu Edit->Source system assignment
    About your secod question check if the BI content already has a mapping defined if not you have to manually create the mapping.
    Best Regards,
    Brindha.

  • BI Content Remote Activation of Datasource - Transports

    During the process of installing BI content in the Dev BW Environment, I am promted to login to the source system (CRM DEV in this case) so that the BI content datasources can be activated and replicated remotely. This process works fine.
    The question I have is the following.
    When I tranpsort all the BW BI content objects from our DEV BW environment to the BW QA environemt, do I still need to collect the activated datasources in the source system (CRM DEV ) and also transport them to CRM QA ?
    Or does the remote activation and replication of the datasources(in the source system-CRM QA) happen automatically when i transport the BW BI content objects from DEV BW to BW QA.
    Thanks

    I don't think, the remote activation and replication of the datasources(in the source system-CRM QA) happen automatically BW QA.
    In BI 7.0, the general practice is, first u have transport datasources from ECC Dev to ECC QA...Then replicate these datasources in BI QA.
    In most of the cases, these replicated datasources becomes inactive in BI QA.
    To over come this, after the replication, u should transport Datasources from BI DEV to QA, so that this DS overwrites replicated (inactive) ones from ECC.
    Re: DataSource getting inactive after transport

  • Removing of remote activation

    Hi friends,
    I am activating ofg_gl_4 data source.
    while i am doing it is giving error Remote data source can not be activated.
    In r/3 i am activating this data source by using transaction rsa5.
    But still it is giving error.
    For that one i have to remove the remote activation in bi system.
    Could you please any one tell me how to do it.
    Regards,
    ramnaresh.

    Hi......
    1)The remote activation is subject to an authorization check. Authorization object S_RO_BCTRA is checked. System administration must have assigned you the role SAP_RO_BCTRA in order for you to be able to activate the DataSources .This authorization applies to all the DataSources in a source system.
    2)For remote activation, the D versions of the DataSources must exist in the BI system. They are replicated when you connect a source system and when you replicate to the BI system for an application component or a source system........
    Check this..........
    http://help.sap.com/saphelp_nw70/helpdata/en/d8/8f5738f988d439e10000009b38f842/frameset.htm
    Hope this helps..........
    Regards,
    Debjani........
    Edited by: Debjani  Mukherjee on Oct 29, 2008 12:12 PM

  • Remote operation exception

    when i log on to the Database Control on a linux machine and enter OS password oracle userand sys pasword it display remote Operation exception. what could be the cause

    I just installed oracle 10g release for windows. However during the installation process I get an error stating (Oracle Configuration Assistant "failed")
    The error message looked like (ORA-12560:TNS:protocol adapter error).
    Any Ideas.

  • Can the iphone be remotely activated if it is lost or stolen so it can be found using the find my iphone app

    can the iphone 5 be remotely activated so it can be found using the find my iphone app. the phone has been offline since it was lost even though it should have had power. if it can be simply turned on by the service provider or by apple the rest i can do using the app

    twhite55 wrote:
    can the iphone 5 be remotely activated so it can be found using the find my iphone app. the phone has been offline since it was lost even though it should have had power. if it can be simply turned on by the service provider or by apple the rest i can do using the app
    If you didn't enable the Find My iPhone function, then you can't track the iPhone.  But it sounds like you did have it turned on, if you're seeing that it's listed in the Find My iPhone app or on icloud.com.  But are you sure it's the same device?  If you had a previous iPhone, and the name of both iPhones was the same, it would make it difficult to know which phone was which, even if they both were listed.
    In any event, an offline device is not trackable.  It could be offline because A) it has no power or B) it is not connected to the internet via cellular data or wi-fi.
    Until it comes back online (and it may never), then it cannot be remotely tracked.

  • About "the transaction is no longer active" exception

    Hi all
    My application is deployed on the weblogic 7 SP2 and whenever i am trying to ship the orders which involves the Database interactions i am getting the following error. I increased the transaction time out periods to 5000 seconds in config.xml but still i am getting following exception.
    can anybody tell me what is excat cause of the following exception and what things i need to do to resolve the exception
    x.x.x.x: MSG: Failed to get Fulfillment Center Sourced Orders java.rmi.RemoteException: EJB Exception: ; nested exception is:
         x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0EJB Exception: ; nested exception is:
         x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0ERROR CODE: 30006 TIME: 1178858558476
         at x.x.x.x.x.ConfirmOrderBean.getAllNewOrdersForStore(ConfirmOrderBean.java:107)
         at jsp_servlet._fulfill.__confirm._jspService(__confirm.java:338)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    Thanx in advance
    Reagrds
    Pandurang

    Hi all
    My application is deployed on the weblogic 7 SP2 and whenever i am trying to ship the orders which involves the Database interactions i am getting the following error. I increased the transaction time out periods to 5000 seconds in config.xml but still i am getting following exception.
    can anybody tell me what is excat cause of the following exception and what things i need to do to resolve the exception
    x.x.x.x: MSG: Failed to get Fulfillment Center Sourced Orders java.rmi.RemoteException: EJB Exception: ; nested exception is:
         x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0EJB Exception: ; nested exception is:
         x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0ERROR CODE: 30006 TIME: 1178858558476
         at x.x.x.x.x.ConfirmOrderBean.getAllNewOrdersForStore(ConfirmOrderBean.java:107)
         at jsp_servlet._fulfill.__confirm._jspService(__confirm.java:338)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    Thanx in advance
    Reagrds
    Pandurang

  • Regarding "the transaction is no longer active" exception

    Hi all
    My application is deployed on the weblogic 7 SP2 and whenever i am trying to ship the orders which involves the Database interactions i am getting the following error. I increased the transaction time out periods to 5000 seconds in config.xml but still i am getting following exception.
    can anybody tell me what is excat cause of the following exception and what things i need to do to resolve the exception
    x.x.x.x: MSG: Failed to get Fulfillment Center Sourced Orders java.rmi.RemoteException: EJB Exception: ; nested exception is:
    x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0EJB Exception: ; nested exception is:
    x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0ERROR CODE: 30006 TIME: 1178858558476
    at x.x.x.x.x.ConfirmOrderBean.getAllNewOrdersForStore(ConfirmOrderBean.java:107)
    at jsp_servlet._fulfill.__confirm._jspService(__confirm.java:338)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    Thanx in advance
    Reagrds
    Pandurang

    pandurang pokharkar wrote:
    Hi all
    My application is deployed on the weblogic 7 SP2 and whenever i am trying to ship the orders which involves the Database interactions i am getting the following error. I increased the transaction time out periods to 5000 seconds in config.xml but still i am getting following exception.
    can anybody tell me what is excat cause of the following exception and what things i need to do to resolve the exception
    x.x.x.x: MSG: Failed to get Fulfillment Center Sourced Orders java.rmi.RemoteException: EJB Exception: ; nested exception is:
    x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0EJB Exception: ; nested exception is:
    x.x.x.x: MSG: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction.The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.AppSetRollbackOnlyException]'. No further JDBC access is allowed within this transaction. TIME: 0ERROR CODE: 30006 TIME: 1178858558476
    at x.x.x.x.x.ConfirmOrderBean.getAllNewOrdersForStore(ConfirmOrderBean.java:107)
    at jsp_servlet._fulfill.__confirm._jspService(__confirm.java:338)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    Thanx in advance
    Reagrds
    PandurangIt is pretty much as it says. While your code is processing this transaction,
    in the backround in another thread, the transaction controller has discovered
    that this transaction has been running longer than it's configured maximum
    time, so the coordinator rolls it back and tells every JDBC object involved
    to throw the exception you see the next time any of them are asked to run
    another method. Turn on the JTA logging, or instrument your code to show step
    by step the progress of your transactions, so you can see what call(s) take
    too much time.
    Joe

  • Flow Activity Exception Handling Problem

    Hi,
    I am using Flow Activity in my Bpel Process, i am getting some exception in one of flow, but other flows are working fine. Even i have included Catch block for other flow still i am getting fault response.
    Please suggest me how to do exception handling in Flow Activity.
    Thanks in advance.

    Hi,
    just restructure your BPEL process. The 'Flow' activity contains several 'Sequence' activities. Simply ... put a 'Scope' activity inside of each 'Sequence' activity. Then put another 'Sequence' activity inside of each 'Scope' activity ... and put there required logic/activities.
    After that you can create fault handling on these 'Scope' activities. In this way you can handle faults in each flow-sequence.
    Regards,
    Martin

  • Remote producer exception while adding in consumer.

    I have producer portlet and trying to add the "Remote Producer Handle" in Consumer Portal Admin console.while adding this,I am gettign the following error.
    com.bea.wsrp.consumer.management.producer.ProducerManagerException: edu/emory/mathcs/backport/java/util/concurrent/ConcurrentHashMap
              at com.bea.wsrp.consumer.management.ProducerManagerImpl.registerProducer(ProducerManagerImpl.java:427)
              at com.bea.jsptools.portal.helpers.wsrp.ProducerManagerControlImpl.registerProducer(ProducerManagerControlImpl.java:260)
              at com.bea.jsptools.portal.helpers.wsrp.ProducerManagerControlBean.registerProducer(ProducerManagerControlBean.java:534)
              at com.bea.jsptools.portal.helpers.wsrp.AddProducerHelper$RegisterProducer.run(AddProducerHelper.java:640)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.runAction(AddProducerWizardController.java:628)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.doIfValid(AddProducerWizardController.java:604)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.registerProducerAction(AddProducerWizardController.java:449)
              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:585)
    Can any one help me on this?

    Here is the full exception.
    com.bea.wsrp.consumer.management.producer.ProducerManagerException: edu/emory/mathcs/backport/java/util/concurrent/ConcurrentHashMap
              at com.bea.wsrp.consumer.management.ProducerManagerImpl.registerProducer(ProducerManagerImpl.java:427)
              at com.bea.jsptools.portal.helpers.wsrp.ProducerManagerControlImpl.registerProducer(ProducerManagerControlImpl.java:260)
              at com.bea.jsptools.portal.helpers.wsrp.ProducerManagerControlBean.registerProducer(ProducerManagerControlBean.java:534)
              at com.bea.jsptools.portal.helpers.wsrp.AddProducerHelper$RegisterProducer.run(AddProducerHelper.java:640)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.runAction(AddProducerWizardController.java:628)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.doIfValid(AddProducerWizardController.java:604)
              at portalTools.definitions.portletProducers.wizard.AddProducerWizardController.registerProducerAction(AddProducerWizardController.java:449)
              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:585)
              at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:879)
              at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
              at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
              at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
              at global.internal.AbstractBaseController.internalExecute(AbstractBaseController.java:360)
              at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
              at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
              at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
              at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
              at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
              at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
              at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
              at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
              at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
              at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
              at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
              at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
              at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
              at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
              at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686)
              at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142)
              at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:106)
              at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111)
              at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181)
              at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167)
              at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225)
              at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:180)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:324)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
              at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130)
              at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
              at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
              at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)
              at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184)
              at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159)
              at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
              at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
              at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:199)
              at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:257)
              at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:689)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
              at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
              at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
              at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
              at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
              at com.bea.jsptools.servlet.PagedResultServiceFilter.doFilter(PagedResultServiceFilter.java:82)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
              at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
              at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
              at weblogic.security.service.SecurityManager.runAs(Unknown Source)
              at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
              at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
              at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
              at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
              at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: com.bea.wsrp.consumer.management.producer.ProducerManagerException: edu/emory/mathcs/backport/java/util/concurrent/ConcurrentHashMap
              at com.bea.wsrp.consumer.management.ProducerManagerImpl.getProducerServiceDescription(ProducerManagerImpl.java:339)
              at com.bea.wsrp.consumer.management.ProducerManagerImpl.getProducerServiceDescription(ProducerManagerImpl.java:309)
              at com.bea.wsrp.consumer.management.ProducerManagerImpl.registerProducer(ProducerManagerImpl.java:403)
              ... 82 more
    Caused by: com.bea.wsrp.faults.OperationFailedException: edu/emory/mathcs/backport/java/util/concurrent/ConcurrentHashMap
              at com.bea.wsrp.faults.FaultInstanceFactory.<clinit>(FaultInstanceFactory.java:51)
              at com.bea.wsrp.proxy.ProxyBase.raiseFault(ProxyBase.java:768)
              at com.bea.wsrp.proxy.ProxyBase.invoke(ProxyBase.java:478)
              at $Proxy117.destroyPortlets(Unknown Source)
              at com.bea.wsrp.consumer.management.portlet.ProxyPortletRemoveListener$ProxyPortletRemover.run(ProxyPortletRemoveListener.java:372)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
              at weblogic.security.service.SecurityManager.runAs(Unknown Source)
              at com.bea.wsrp.consumer.management.portlet.ProxyPortletRemoveListener.handleNotification(ProxyPortletRemoveListener.java:199)
              at javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:221)
              at javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:184)
              at javax.management.timer.Timer.sendNotification(Timer.java:1295)
              at javax.management.timer.Timer.notifyAlarmClock(Timer.java:1264)
              at javax.management.timer.TimerAlarmClock.run(Timer.java:1347)
              at java.util.TimerThread.mainLoop(Timer.java:512)
              at java.util.TimerThread.run(Timer.java:462)

  • Email Stuck - SMTP Relay To Remote Active Directory Site 451 4.4.0 Primary target IP address responded with: ""421 4.4.2 Connection dropped due to SocketError

    hi All, 
    I have 2 HT, located different AD Site. HT1 located in HO Site, and HT2 located in Branch Site.
    User from HO site can send email to branch site, but user from branch site cannot send email to HO site.
    I found this error on Queue Viewer Console:
    451 4.4.0 Primary target IP address responded with: ""421 4.4.2 Connection dropped due to SocketError."" Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed
    to all alternate hosts
    disable all receive connector except default connector still no luck. Telnet SMTP to HT1 from HT2 is working fine.
    Event Viewer warning, event ID: 2006.
    Send connector Intra-Organization SMTP Send Connector: the connection to IPHT1:25 was disconnected by the remote server.
    Send SMTP Log:
    2014-03-10T07:11:50.624Z,Intra-Organization SMTP Send Connector,08D109CB5D495BDE,19,IPHT2:57231,IPHT1:25,-,,Remote
    2014-03-10T07:21:50.716Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,0,,IPHT1:25,*,,attempting to connect
    2014-03-10T07:21:50.763Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,1,IPHT2:15741,IPHT1:25,+,,
    2014-03-10T07:21:50.825Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,2,IPHT2:15741,IPHT1:25,<,"220 IPHT1.jakarta.com Microsoft ESMTP MAIL Service ready at Mon, 10 Mar 2014 14:21:50 +0700",
    2014-03-10T07:21:50.825Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,3,IPHT2:15741,IPHT1:25,>,EHLO IPHT2.jakarta.com,
    2014-03-10T07:21:50.872Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,4,IPHT2:15741,IPHT1:25,<,250-IPHT1.jakarta.com Hello [IPHT2],
    2014-03-10T07:21:50.872Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,5,IPHT2:15741,IPHT1:25,<,250-SIZE 104857600,
    2014-03-10T07:21:50.872Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,6,IPHT2:15741,IPHT1:25,<,250-DSN,
    2014-03-10T07:21:50.872Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,7,IPHT2:15741,IPHT1:25,<,250-ENHANCEDSTATUSCODES,
    2014-03-10T07:21:50.872Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,8,IPHT2:15741,IPHT1:25,<,250-STARTTLS,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,9,IPHT2:15741,IPHT1:25,<,250-X-ANONYMOUSTLS,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,10,IPHT2:15741,IPHT1:25,<,250-AUTH NTLM,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,11,IPHT2:15741,IPHT1:25,<,250-X-EXPS GSSAPI NTLM,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,12,IPHT2:15741,IPHT1:25,<,250-8BITMIME,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,13,IPHT2:15741,IPHT1:25,<,250-BINARYMIME,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,14,IPHT2:15741,IPHT1:25,<,250-XEXCH50,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,15,IPHT2:15741,IPHT1:25,<,250-XRDST,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,16,IPHT2:15741,IPHT1:25,<,250 XSHADOW,
    2014-03-10T07:21:51.091Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,17,IPHT2:15741,IPHT1:25,>,X-ANONYMOUSTLS,
    2014-03-10T07:21:51.122Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,18,IPHT2:15741,IPHT1:25,<,220 2.0.0 SMTP server ready,
    2014-03-10T07:26:51.590Z,Intra-Organization SMTP Send Connector,08D109CB5D495C06,19,IPHT2:15741,IPHT1:25,-,,Remote
    2014-03-10T07:26:51.590Z,Intra-Organization SMTP Send Connector,08D109CB5D495C0E,0,,IPHT1:25,*,,attempting to connect
    2014-03-10T07:26:51.636Z,Intra-Organization SMTP Send Connector,08D109CB5D495C0E,1,IPHT2:15794,IPHT1:25,+,,
    anyone have a clue?
    thanks.
    Endrik
    Endrik | blog: itendrik.wordpress.com Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

    Hi Niko, 
    I already disable IPv6 and IPv4 checksum offloading, also check the MTU on each HT but still no luck.
    I found the following error on the Netmon:
    i already tls on receive connector, enable anonymous authentication, still no luck.
    any idea?
    thanks.
    Endrik
    Endrik | blog: itendrik.wordpress.com Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • OAM 11gR2 - Remote Registration Exception - HTTP Error 501

    Hello
    I installed OAM 11gR2 and am trying to configure OAM with WebGate.
    While doing remote registration using rreg.bat I get an exception
    RemoteRegistrationException
    HTTP error 501 could not send HTTP Post message
    Can anyone help me?
    Thanks,
    Ram

    Its most likely a problem with your java version.
    I know for sure that Java version 1.6.0_37 doesn't work and that 1.6.0.41 works for sure.
    Can you try installing a different version of java.
    if on linux use the
    update-alternatives --config java
    as root to point to the java (other version that you installed) and try again.
    Let me know if that helps.
    Cheers
    -Kungo

  • DirectPropertyManagerBean remote fatal exception from user management um tags.

    Hi
    I am wondering if any one has experienced the same problems as us or if you have
    some advice. Recently we put our web lgoic commerce server 3.5 running on weblogic
    server 6.0 and MS SQL server 7 sp 3 into production.
    Now we receive remote exceptions from the DirectPropertyManagerBean from our login
    jsp pages and <um> tags intermittently which forces us to reboot the application
    server a few times a week. This prevents any of our customers from logging into
    our site once these exceptions start being thrown.
    Our exception stack is Servlet failed with Exception> java.lang.NullPointerException:
    at java.lang.String.<init>(String.java:193) at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:282)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<2002/03/08 06:07:29> <Info> <EJB> <***> <wlcsServer> <ExecuteThread: '9'
    for queue: 'default'> <angusg> <2269:e645911858eef116> <010051> <EJB Exception
    during invocation from home: com.beasys.commerce.foundation.property.DirectPropertyManagerBeanHomeImpl@9f4365
    threw exception: java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile> java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile java.rmi.RemoteException: Error checking for explicit property
    in profileType: Customer Profile at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getExplicitProperty(DirectPropertyManagerBean.java:610)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getExplicitProperty(DirectPropertyManagerBeanImpl.java:190)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:700)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:429)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getProperty(DirectPropertyManagerBeanImpl.java:210)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl.getProperty(DirectPropertyManagerBeanEOImpl.java:206)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLSkel.invoke(DirectPropertyManagerBeanEOImpl_WLSkel.java:160)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:118)
    at weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:115)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88) at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108) at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:225)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLStub.getProperty(DirectPropertyManagerBeanEOImpl_WLStub.java:219)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:128)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:165)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.getProperty(GetPropertyTag.java:161)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.doStartTag(GetPropertyTag.java:107)
    at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:268) at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120).
    Where should I be looking to address this issue? In the database or application
    server?
    Thanx João

    Hi
    I am wondering if any one has experienced the same problems as us or if you have
    some advice. Recently we put our web lgoic commerce server 3.5 running on weblogic
    server 6.0 and MS SQL server 7 sp 3 into production.
    Now we receive remote exceptions from the DirectPropertyManagerBean from our login
    jsp pages and <um> tags intermittently which forces us to reboot the application
    server a few times a week. This prevents any of our customers from logging into
    our site once these exceptions start being thrown.
    Our exception stack is Servlet failed with Exception> java.lang.NullPointerException:
    at java.lang.String.<init>(String.java:193) at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:282)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<2002/03/08 06:07:29> <Info> <EJB> <***> <wlcsServer> <ExecuteThread: '9'
    for queue: 'default'> <angusg> <2269:e645911858eef116> <010051> <EJB Exception
    during invocation from home: com.beasys.commerce.foundation.property.DirectPropertyManagerBeanHomeImpl@9f4365
    threw exception: java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile> java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile java.rmi.RemoteException: Error checking for explicit property
    in profileType: Customer Profile at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getExplicitProperty(DirectPropertyManagerBean.java:610)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getExplicitProperty(DirectPropertyManagerBeanImpl.java:190)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:700)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:429)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getProperty(DirectPropertyManagerBeanImpl.java:210)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl.getProperty(DirectPropertyManagerBeanEOImpl.java:206)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLSkel.invoke(DirectPropertyManagerBeanEOImpl_WLSkel.java:160)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:118)
    at weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:115)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88) at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108) at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:225)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLStub.getProperty(DirectPropertyManagerBeanEOImpl_WLStub.java:219)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:128)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:165)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.getProperty(GetPropertyTag.java:161)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.doStartTag(GetPropertyTag.java:107)
    at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:268) at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120).
    Where should I be looking to address this issue? In the database or application
    server?
    Thanx João

Maybe you are looking for

  • Error Handling in PI 7.1

    Hi Experts I need your help to solve one problem which i m facing in PI. Can anyone could suggest the solution for this. I am tring to send file which has 7 Sales Order each having 5 line items. Now some mandatory filelds are missing in 3 Sales Order

  • Download into text file

    Hi Abapers, i want to download the entries of "List of Quotations" ALV List in EXCEL file. Is it possible with any option ? "List of Quotation" appears by running transaction VA25. then press enter and then fill Sales Area and again press enter. Now

  • SuPM - Data from SAP BW Query(Automatic) and Manual not displayed in KPI

    Dear Forum, I am also, currently working on a project implementing BO SuPM Version 1.0. Landscape is ECC -> BI -> SuPM dashboards. I have created a KPI in SuPM dashboard. Case 1 : Automatic data collection - This KPI is marked for Automatic data coll

  • Character encoding across Web application contexts

              If I submit an HTTP request encoded in SHIFT-JIS across Web application contexts,           the characters seem to get mangled. Do I need to do anything special to pass request           objects that are encoded in SHIFT-JIS to another cont

  • Help: Steps in importing a *.dmp format

    Ok.. i'm using windows XP SP2 and oracle version 9.2.0.something.. anyways here is my problem.. I created a repository using the Enterprise manager configuration assistant and then i successfully run the OracleOra92ManagementServer from the services.