O-R Relations in Sun J2EE SERVER/OC4j

The O-R Mappings in Sun J2EE SERVER using Deployer Tool
Not working ...
I badly need help....

Raj -
You can use an old style (pfd 1 I think) of the ejb2.0 cmp/cmr with OC4J/Orion. The container will manage the relationships for you. I use it quite frequently in fact, though it is not advertised too heavily in the documentation. Once the ejb2.0 spec is incorporated fully into OC4J - you will have to make the odd change here-and-there.
For instance, create your abstract implementation classes -
Dept and Emp...
public abstract class DeptEJB implements EnityBean
//abstract getters/setters
public abstract void setDeptName(String deptName);
public abstract String getDeptName();
(etc)
// abstract 1-* relationship methods
public void addEmp(Emp emp) throws RemoteException,FinderException,NamingException,CreateException
this.getEmps().add(emp);
public abstract void setEmps(Collection emps);
public abstract Collection getEmps();
Create your abstract implementation class for Emp as well. While this relationship is certainly bi-directional (i.e. known to both) I am only doing a uni-directional relationship in this case.
After you have done this, you will need to put the relationship into the ejb-jar.xml file....You will need to create an ejb2.0 style descriptor.
For instance....
<?xml version = '1.0' encoding = 'windows-1252'?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar>
<enterprise-beans>
<entity>
<description>Dept Entity Bean</description>
<display-name>Department</display-name>
<ejb-name>Dept</ejb-name>
<home>mypackage.DeptHome</home>
<remote>mypackage.Dept</remote>
<ejb-class>mypackage.impl.DeptEJB</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>java.lang.String</prim-key-class>
<abstract-schema-name>Dept</abstract-schema-name>
<cmp-version>2.X</cmp-version>
<reentrant>False</reentrant>
... Put all of your cmp fields as usual...
... In that same list (different than current ejb2.0)...
... place your cmr field ...
<cmp-field>
<field-name>emps</field-name>
</cmp-field>
</entity>
<!-- Also do you Emp entity descriptor -->
<entity>
<description>Emp Entity Bean</description>
<display-name>Employee</display-name>
<ejb-name>Empejb-name>
<home>mypackage.EmpHome</home>
<remote>mypackage.Emp</remote>
<ejb-class>mypackage.impl.EmpEJB</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>java.lang.String</prim-key-class>
<abstract-schema-name>Emp</abstract-schema-name>
<cmp-version>2.X</cmp-version>
<reentrant>False</reentrant>
... Put all of your cmp fields as usual...
<cmp-field>
<field-name>some_field</field-name>
</cmp-field>
... etc ...
</entity>
... The rest of your enterprise bean information
</enterprise-beans>
..... Next comes the relationships section ...
<<<<<NOTE - this differs somewhat from the final EJB2.0 spec
<<<<and you will need to make any required changes once it
<<<becomes final in OC4J
<relationships>
<ejb-relation>
     <ejb-relation-name>dept-emps</ejb-relation-name>
     <ejb-relationship-role>
     <ejb-relationship-role-name>
          dept-has-emps
     </ejb-relationship-role-name>
          <multiplicity>one</multiplicity>
          <role-source>
          <ejb-name>Dept</ejb-name>
          </role-source>
          <cmr-field>
          <cmr-field-name>emps</cmr-field-name>
          <cmr-field-type>java.util.Collection</cmr-field-type>
          </cmr-field>
     </ejb-relationship-role>
     <ejb-relationship-role>
     <ejb-relationship-role-name>
          emps-belong-to-dept
     </ejb-relationship-role-name>
     <multiplicity>many</multiplicity>
     <role-source>
     <ejb-name>Emp</ejb-name>
     </role-source>
     </ejb-relationship-role>
</ejb-relation>
</relationships>
... Finish off your deployment descriptor as usual
When deployed successfully, OC4J will create your entity tables and your relationship tables (build off of the primary ids of you entity beans). You can add and remove employees from your dept.
Okay - that is a quick way to look at it from ejb2.0 (as it exists today in OC4J) container managed relationships. As stated, this will change somewhat when the spec is finalized in OC4J (they are quiet about when that will happen).
If you want to do container managed relationships in ejb1.1 - go to the Orion support site www.atlassian.com and go to this link:
http://kb.atlassian.com/content/orionsupport/articles/complex-or.html
Hope I have helped somewhat and haven't completely confused the issue!
Cheers
Ray
Thanx for the information...
I am Using J2EE RI Server ...
can i have an example Code like Dept-Emp with 1-* Relation Ship
i am trying the same...
Plz clarify...
* Shouls We Create the Relation ship fields and relation
in the DataBase itself
OR
The Container Will Manage for us
Cheers
Raj

Similar Messages

  • Error in starting default server of sun J2EE server

    Hi All,
    I am getting an error, while starting default server. The Server log reads it as:
    [#|2004-05-11T10:56:39.201-0700|SEVERE|sun-appserver-pe8.0|javax.enterprise.system.container.web|_ThreadID=10;|WebModule[/asadmin]StandardWrapper.Throwable
    java.lang.NullPointerException
         at com.sun.enterprise.appverification.tools.InstrumentLoggerImpl.doInstrumentForWeb(InstrumentLoggerImpl.java:125)
    Please, help me with a solution.
    Thanks,
    sumit

    Looks like the AVK was installed at one point. If so was it uninstalled using the scripts provided with the
    AVK?

  • Sun J2EE 1.4 Server domain could not start (org/apache/common/launcher/..)

    I am having problem with starting Sun J2EE Server 1.4. I had no problem with starting and stopping the server until today. I was not able to figure out what the problem is. I have tried reinstallation but did not work either. I also have reinstalled my J2SDK, but did not fix the problem. I am using J2SDK1.4.2_03 on Windows 2003 Server. Before the problem occured, I was working on a simple JMS applcation and trying to connect to J2EE server from a standalone JMS client at different machine. I am not sure what really caused the problem, but uninstalling it and reinstalling it does not change anything.
    Here is my error message when I do start-domain domain1 at asadmin mode:
    asadmin> start-domain domain1
    Starting Domain domain1, please wait.
    Log redirected to C:\Sun\AppServer\domains\domain1\logs\server.log.
    abnormal subprocess termination: Detailed Message:Error: org/apache/commons/launcher/LaunchFilter
    CLI156 Could not start the domain domain1.
    I have tried to start it by using startserv.bat at domain1 directory and also the desktop shortcut Start Default Domain. Nothing works. I'do apprecited it if you can share any ideas or suggestions regarding this issue.
    Thank you in advance.

    I made some changes to my enviroment variables and added jar files to the J2SDK <<J2SDK_HOME>>/jre/lib/ext folder in order to run the standalone JMS client.
    Here is my classpath settings:
    .;C:\Sun\AppServer\lib\j2ee.jar;
    C:\Sun\AppServer\lib\appserv-admin.jar;
    C:\Sun\AppServer\lib\appserv-rt.jar;
    C:\Sun\AppServer\lib\appserv-rt.jar;
    C:\Sun\AppServer\lib\appserv-ext.jar;
    C:\Sun\AppServer\lib\install\applications\jmsra\imq.jar;
    C:\Sun\AppServer\lib\install\applications\jmsra\imqadmin.jar;
    C:\Sun\AppServer\lib\install\applications\jmsra\imqjmsra.jar;
    C:\Sun\AppServer\lib\install\applications\jmsra\imqutil.jar;
    C:\Sun\AppServer\imq\lib\fscontext.jar;C:\J2EE\tutorial\j2eetutorial14\examples\ejb\simplemessage\SimpleMSGAppClient.jar
    I also have added appserv-rt.jar, appserv-rt.jar, appserv-ext.jar, imq.jar, imqadmin.jar, imqjmsra.jar, and imqutil.jar in the <<J2SDK_HOME>>/jre/lib/ext/ folder. I know they were redundant but just wanted to make sure. Can any of these be causing the problem?
    Again, thank you and let me know if you need any other info.

  • Sun J2EE SDK 1.3_01, java.lang.ClassCastException thrown during deployment

    I encountered a bug while using the deploytool to deploy
    an EAR file to the Sun J2EE 1.3_01 server.
    I submitted a bug report to Sun via the Sun Java Developer Connection.
    (Sorry, it has not been assigned a BugID yet)
    Question:
    Does anybody know if the web container in Sun's
    J2EE 1.3_01 server supports access to local enterprise beans?
    Screenshots of the bug are available at
    http://sync4j.sourceforge.net/deploymentbug/
    Full details below....
    -Sean
    category: j2ee
    subcategory: deployment
    release: 1.3_01
    hardware: x86
    OSversion: windows_2000
    synopsis: java.lang.ClassCastException thrown during deployment of Session bean
    java -version
    java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    C:\j2sdkee1.3\bin>j2ee -version
    Java 2 Enterprise Edition version 1.3_01, build 1.3_01-b01
    I built a EJB 2.0 compliant stateful session bean.
    The session bean has a remote interface (ISyncRemote),
    a remote home interface (ISyncHomeRemote),
    a local interface (ISyncLocal),
    and a local home interface (ISyncHomeLocal).
    I built an HTTP Servlet that is supposed to access
    the Stateful Session Bean using ISyncHomeLocal and
    ISyncLocal
    I run "deploytool.bat" in GUI mode to perform the deployment.
    During deployment, the deploytool GUI displays a message
    box which states:
    "There was a deployment error.
    java.rmi.ServerException: RemoteException occurred in server thread;
    nested exception is:
    java.rmi.RemoteException: An error was encountered while loading
    a web component.
    Please refer to
    <J2EE_HOME>/logs/<machine-name>/j2ee//j2ee/error.log
    for more information. Please verify your Application with the
    Verifier tool."
    The "error.log" file did not contain any useful information.
    I ran the J2EE "verifier.bat" tool to verify that my EAR archive is OK.
    The Sun J2EE server output this error string:
    "java.lang.ClassCastException:
    com.sun.enterprise.deployment.EjbExternalDescriptor"
    Here is the full output from the Sun J2EE server:
    C:\j2sdkee1.3\bin>j2ee -verbose
    J2EE server listen port: 1050
    Naming service started:1050
    Binding DataSource, name = jdbc/EstoreDB, url =
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    Binding DataSource, name = jdbc/Cloudscape, url =
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    Binding DataSource, name = jdbc/DB1, url =
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    Binding DataSource, name = jdbc/DB2, url =
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    Binding DataSource, name = jdbc/InventoryDB, url =
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    Binding DataSource, name = jdbc/XACloudscape, url = jdbc/XACloudscape__xa
    Binding DataSource, name = jdbc/XACloudscape__xa, dataSource =
    COM.cloudscape.core.RemoteXaDataSourc
    e@245536
    Starting JMS service...
    Initialization complete - waiting for client requests
    Binding: < JMS Destination : jms/Queue , javax.jms.Queue >
    Binding: < JMS Destination : jms/Topic , javax.jms.Topic >
    Binding: < JMS Cnx Factory : TopicConnectionFactory , Topic , No properties >
    Binding: < JMS Cnx Factory : jms/TopicConnectionFactory , Topic , No properties
    >
    Binding: < JMS Cnx Factory : QueueConnectionFactory , Queue , No properties >
    Binding: < JMS Cnx Factory : jms/QueueConnectionFactory , Queue , No properties
    >
    Starting web service at port: 8000
    Starting secure web service at port: 7000
    J2EE SDK/1.3
    Starting web service at port: 9191
    J2EE SDK/1.3
    J2EE server startup complete.
    Compiling c:\j2sdkee1.3\repository\rbi\gnrtrTMP\Sync4j Server enterprise
    application\sync4j\server\s
    yncbean\SyncBean_LocalHomeImpl.java ....
    Compiling c:\j2sdkee1.3\repository\rbi\gnrtrTMP\Sync4j Server enterprise
    application\sync4j\server\s
    yncbean\SyncBean_EJBLocalObjectImpl.java ....
    Compiling c:\j2sdkee1.3\repository\rbi\gnrtrTMP\Sync4j Server enterprise
    application\sync4j\server\s
    yncbean\SyncBean_RemoteHomeImpl.java ....
    Compiling c:\j2sdkee1.3\repository\rbi\gnrtrTMP\Sync4j Server enterprise
    application\sync4j\server\s
    yncbean\SyncBean_EJBObjectImpl.java ....
    rmic sync4j.server.syncbean.SyncBean_RemoteHomeImpl...
    rmic sync4j.server.syncbean.SyncBean_EJBObjectImpl...
    c:\j2sdkee1.3\repository\rbi\applications\Sync4j Server enterprise
    application1004172068449Server.ja
    r
    Binding name:`java:comp/env/ejb/ISyncHomeRemote`
    Binding name:`java:comp/env/ejb/ISyncHomeLocal`
    java.lang.ClassCastException:
    com.sun.enterprise.deployment.EjbExternalDescriptor
    at com.sun.enterprise.deployment.EjbReferenceDescriptor.getValue
    (EjbReferenceDescriptor.java
    :202)
    at com.sun.enterprise.naming.NamingManagerImpl.bindObjects
    (NamingManagerImpl.java:394)
    at com.sun.web.server.WebService.addContext(WebService.java:148)
    at com.sun.web.server.ServletDeployerImpl.loadWebComponents
    (ServletDeployerImpl.java:214)
    at
    com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployWebComponent
    s
    (JarInsta
    llerImpl.java:791)
    at
    com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployApplication
    (JarInstall
    erImpl.java:219)
    at
    org.omg.stub.com.sun.enterprise.tools.deployment.backend._JarInstallerImpl_Tie.
    invoke(Un
    known Source)
    at com.sun.corba.ee.internal.corba.ServerDelegate.dispatch
    (ServerDelegate.java:355)
    at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:273)
    at com.sun.corba.ee.internal.iiop.RequestProcessor.process
    (RequestProcessor.java:84)
    at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run
    (ThreadPool.java:99)
    Does the Sun J2EE server implementation support the invocation
    of Session EJB's via a Local interface?
    Does the Sun J2EE server implementation allow a Servlet to invoke
    Session EJB's via the bean's Local interface?
    While researching this issue, I read the J2EE 1.3 final specification.
    The spec says:
    "The EJB container is required to access to local enterprise beans.
    We recommend that the web container also support access to local
    enterprise beans."
    Does the web container in Sun's J2EE server support access to local enterprise beans?

    I'm pretty much sure that you cannot access a
    local Session bean from outside the EJB container.Please read the J2EE 1.3 specification before posting messages about EJB and J2EE.
    According to the J2EE 1.3 specification:
    "The EJB container is required to support access to local enterprise beans. We recommend that the web container also support access to local enterprise beans.
    No support is provided for access to local enterprise beans from the application client container or the applet container."
    If you use local interfaces for your session bean,
    than your client must be local too. A local client is
    a client that is collocated in the same JVM with the
    session/entity that provides the local view and which
    can be tightly coupled to the bean.My client is running in the same JVM as my EJB. The client is a servlet. The servlet is running in the same JVM as the EJB.
    For what its worth, the error that I observed occurs during deployment. I haven't figured out why deployment is failing.

  • SOS!!!starting j2EE server error

    Hi,everyone.
    I'm using Sun J2EE Server 1.3.1.I met a trouble with it.Now,when i try to start it,it will appear many error message:
    J2EE server listen port: 1050
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause cou
    ld be another instance of the server already running.
    at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMg
    r.java:119)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause cou
    ld be another instance of the server already running.
    at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMg
    r.java:119)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause cou
    ld be another instance of the server already running.
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:346)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    J2EE server reported the following error: Could not initialize j2ee server. Poss
    ible cause could be another instance of the server already running.
    Error executing J2EE server ...
    I donno why.Plz help me.
    Regards,
    Albert Lee

    Solution to Problem: ANother JNDI service is running on the port 1050. It may be Websphere Application server, Weblogic, Websphere test env. or any other service. Stop if any of these service is running and restart your m/c. If still it doesn't work then change the port no. in orb.properties file in J2EEHOME\config.

  • How to install j2ee sun app server 8.0 in debain linux

    hi guys
    i am new to linux and i have downloaded the j2ee sun app server 8.0(linuxversion) from sun.java
    in sun.java documentation says first we have to change the mode to excecutable
    then he is saying to do this
    1. To run the installation program that uses a graphical interface, at the command prompt type the name of the bundle file at the command prompt.
    2.To run the installation program that uses the command-line interface, at the command prompt type the name of the bundle file followed by the -console option.
    after chmod + x <bundle name >
    the next step i am not able to do it
    what to do next
    any suggestions
    regards
    sandeep

    Hi rlubke
    Thanks for the suggestion
    1.Change the permission of the bundle file so that you have execute access:
    chmod +x <bundle-file-name>
    2. To run the installation program that uses a graphical interface, at the command prompt type the name of the bundle file at the command prompt.
    3.To run the installation program that uses the command-line interface, at the command prompt type the name of the bundle file followed by the -console option.
    Step 1. After chmod + x <bundle name >
    Step 2. sun/appserver/# <bundle name>
    bash: <bundle name>: command not found
    Step 3. sun/appserver# <bundle name>
    bash: <bundle name#>: command not found
    any suggestions
    i have done what u have said now
    Step 1. After chmod + x <bundle name >
    Step 2. sun/appserver/#./ <bundle name>
    Checking available disk space....
    Checking Java(TM) 2 Runtime Environment...
    Extracting Java(TM) 2 Runtime Environment files...
    Extracting installation files...
    Launching Java(TM) 2 Runtime Environment....
    Error: There are no files requiring installation.
    Deleting Temporary files...
    Step 3. sun/appserver# <bundle name>
    Checking available disk space....
    Checking Java(TM) 2 Runtime Environment...
    Extracting Java(TM) 2 Runtime Environment files...
    Extracting installation files...
    Launching Java(TM) 2 Runtime Environment....
    Error: There are no files requiring installation.
    Deleting Temporary files...
    this is what happening excatly

  • Regarding jms implementation that comes with reference j2ee server from sun

    I have a message bean that is trying to read message off the queue, do something, and put a message on to other queue.
    The problem: I am loosing a message.
    I have tried both the container managed as well as bean managed transaction.
    Is there any bug with the reference JMS server? I am using the SimpleQueueSender that comes with the jms tutorial from sun to send message in a persisted mode. I am running the J2EE server that comes from SUN.
    I will post the code if someone is willing to take a sincere look.
    Thanks
    Aman

    I can tell you one thing about JMS, I have websphere MQ Series, Even the product like MQ from IBM have limitation when using 2 phase commit(), it supports 2 PC only when websphere and MQ Series are installed on the same box, So i would not be surprised if there is a bug in reference JMS implementation and you are losing messages even though in transaction. Are you using distributed transaction.

  • What is their difference betwwen  Sun ONE Application Server  and J2EE serv

    Sun ONE Application Server is Sun implementation of J2EE server.
    But it seems even no Sun ONE Application Server, use J2EE SDK command
    j2ee -verbose
    we still can launch an Application Server that support EJB, JSP....
    what is their difference betwwen Sun ONE Application Server and J2EE server provided by J2EE SDK ?
    Thanks,

    Sun ONE generally refers to the Sun ONE Application Server version 7.x. This is a J2EE 1.3 compliant application server from Sun. Sun also released a Reference Implementation version (RI) as a requirement of the J2ee 1.3 spec. This is the J2EE server you are refering too. The Sun ONE Application Server 7 is a more robust production ready App Server.
    Going forward, Sun combined the 2 seperate groups to include just 1 release. The J2EE 1.4 Reference Implementation is the Sun Java System Application Server Platform Edition version 8. SJS AS 8 PE is both free and production ready. Other version will include High Availability, Managing and Monitoring features.
    -Jeff

  • Using JMS to connect to Sun's 1.4 J2EE server

    Hi,
    I've been reading around various postings detailing how to connect to J2EE servers at runtime, and they all seem to follow the format:
    Properties props = new Properties();
    props.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.enterprise.naming.SerialInitContextFactory");
    props.put(Context.PROVIDER_URL, "rmi://localhost");
    // Create a JNDI API InitialContext object
    // (may throw a NamingException)
    jndiContext = new InitialContext(props);
    But none of the discussion is totally complete. It seems incredibly difficult to connect to a J2EE server, and the documentation on the issue is incredibly poor.
    I'd like to do this without the 'appclient' program that comes with Sun's J2EE server as I wish to have a development environment that can start up, connect to the J2EE server, and send messages.
    So has anyone managed to get this to work?
    I'm confused to where the username and password go. I've seen other suggestions to make the above work, including:
    props.put("org.omg.CORBA.ORBInitialPort", "3700");
    props.put("org.omg.CORBA.ORBInitialHost", "localhost");
    ORB orb = ORB.init(new String[] {}, props);
    props.put("java.naming.corba.orb", orb);
    Therefore can anyone clear this up for me! A few lines of code, showing exactly how I can connect to a J2EE server.
    All I want to do is send a few messages.. :)
    Cheers
    John

    Hello everyone;
    Actually I have a error below;
    Feb 23, 2006 11:52:27 PM com.sun.corba.ee.spi.logging.LogWrapperBase doLog
    INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/1973"
    Feb 23, 2006 11:52:36 PM com.sun.enterprise.connectors.util.SetMethodAction handleException
    WARNING: RAR7096: Exception null while trying to set the value on property Name
    Feb 23, 2006 11:52:36 PM com.sun.enterprise.naming.SerialContext lookup
    SEVERE: NAM0004: Exception during name lookup : {0}
    com.sun.enterprise.resource.PoolingException
    at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:143)
    at com.sun.enterprise.naming.factory.AdministeredObjectFactory.getObjectInstance(AdministeredObjectFactory.java:89)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:293)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at javaapplication17.Main.main(Main.java:39)
    Caused by: java.security.PrivilegedActionException: com.sun.enterprise.connectors.ConnectorRuntimeException
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:139)
    ... 5 more
    Caused by: com.sun.enterprise.connectors.ConnectorRuntimeException
    at com.sun.enterprise.connectors.util.SetMethodAction.handleException(SetMethodAction.java:110)
    at com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:96)
    ... 7 more
    Caused by: java.lang.reflect.InvocationTargetException
    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 com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:69)
    ... 7 more
    Caused by: java.lang.IllegalArgumentException: MQ:Queue:Invalid Queue Name -
    at com.sun.messaging.Queue.setName(Queue.java:64)
    ... 12 more
    javax.naming.CommunicationException: serial context communication ex [Root exception is com.sun.enterprise.resource.PoolingException]
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:317)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at javaapplication17.Main.main(Main.java:39)
    Caused by: com.sun.enterprise.resource.PoolingException
    at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:143)
    at com.sun.enterprise.naming.factory.AdministeredObjectFactory.getObjectInstance(AdministeredObjectFactory.java:89)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:293)
    ... 2 more
    Caused by: java.security.PrivilegedActionException: com.sun.enterprise.connectors.ConnectorRuntimeException
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:139)
    ... 5 more
    Caused by: com.sun.enterprise.connectors.ConnectorRuntimeException
    at com.sun.enterprise.connectors.util.SetMethodAction.handleException(SetMethodAction.java:110)
    at com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:96)
    ... 7 more
    Caused by: java.lang.reflect.InvocationTargetException
    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 com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:69)
    ... 7 more
    Caused by: java.lang.IllegalArgumentException: MQ:Queue:Invalid Queue Name -
    at com.sun.messaging.Queue.setName(Queue.java:64)
    ... 12 more
    I tried everything in this form but I could not send a message to queue from my standalone client.
    I am trying to communicate with my application server throught JMS almost a week. But I could not get any result. I even read twice some forms. Actually all I can say I progressed to here..
    My code is below...
    Context initialContext = new InitialContext();
                javax.jms.QueueConnectionFactory factory = (javax.jms.QueueConnectionFactory) initialContext.lookup("jmsFactory");
                Destination queue = (javax.jms.Queue) initialContext.lookup("jmsQueue");
                javax.jms.QueueConnection connection = factory.createQueueConnection();
                javax.jms.QueueSession session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
                On the jmsQueue lookup there is the error... I create all the resources in my Sun System Application Server 8.2 PE...
    Please help or say some thing?
    .....

  • Error while starting the sun application server 8

    when ever i start the default server i get the following server.............
    can any one tell me where shoud i specify the correct path or is the error related to something else.................
    [#|2005-06-29T14:27:32.250+0530|WARNING|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|LAUNCHER005:Spaces in your PATH have been detected. The PATH must be consistently formated (e.g. C:\Program Files\Java\jdk1.5.0\bin; ) or the Appserver may not be able to start and/or stop.  Mixed quoted spaces in your PATH can cause problems, so the launcher will remove all double quotes before invoking the process. The most reliable solution would be to remove all spaces from your path before starting the Appservers components.  |#]
    [#|2005-06-29T14:27:32.328+0530|INFO|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|
    C:/Sun/AppServer/jdk\bin\java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=C:/Sun/AppServer/domains/domain1/logs/server.log
    -Djava.endorsed.dirs=C:/Sun/AppServer/lib/endorsed
    -Djava.security.policy=C:/Sun/AppServer/domains/domain1/config/server.policy
    -Djava.security.auth.login.config=C:/Sun/AppServer/domains/domain1/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=C:/Sun/AppServer/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/AppServer/domains/domain1/config/cacerts.jks
    -Djava.ext.dirs=C:/Sun/AppServer/jdk/jre/lib/ext;C:/Sun/AppServer/domains/domain1/lib/ext
    -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=domain1
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=C:/Sun/AppServer/domains/domain1
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=domain1
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=C:/Sun/AppServer/config
    -Djava.library.path=C:\Sun\AppServer\jdk\jre\bin\client;C:\Sun\AppServer\lib;C:\Sun\AppServer\lib;C:\Sun\AppServer\jdk\bin;.;C:\WINNT\system32;C:\WINNT;C:\Sun\AppServer\lib;C:\Sun\AppServer\bin;C:\Sun\AppServer\lib;C:\Sun\AppServer\bin;C:\Sun\AppServer\bin;C:\Sun\AppServer\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\VoiceAge\Common;C:\Sun\AppServer\bin;C:\DOCUME~1\71304\LOCALS~1\Temp\j2eesdk-1_4_02_2005Q2-windows.exe2\package;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\VoiceAge\Common;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\VoiceAge\Common;c:\j2sdk1.4.1_01\bin;c:\sun\appserver\bin;
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    C:/Sun/AppServer/jdk/lib/tools.jar;C:/Sun/AppServer/lib/appserv-rt.jar;C:/Sun/AppServer/lib\activation.jar;C:/Sun/AppServer/lib\admin-cli.jar;C:/Sun/AppServer/lib\appserv-admin.jar;C:/Sun/AppServer/lib\appserv-cmp.jar;C:/Sun/AppServer/lib\appserv-ext.jar;C:/Sun/AppServer/lib\appserv-jstl.jar;C:/Sun/AppServer/lib\appserv-upgrade.jar;C:/Sun/AppServer/lib\commons-launcher.jar;C:/Sun/AppServer/lib\commons-logging.jar;C:/Sun/AppServer/lib\dom.jar;C:/Sun/AppServer/lib\j2ee-svc.jar;C:/Sun/AppServer/lib\j2ee.jar;C:/Sun/AppServer/lib\jax-qname.jar;C:/Sun/AppServer/lib\jaxr-api.jar;C:/Sun/AppServer/lib\jaxr-impl.jar;C:/Sun/AppServer/lib\jaxrpc-api.jar;C:/Sun/AppServer/lib\jaxrpc-impl.jar;C:/Sun/AppServer/lib\jmxremote.jar;C:/Sun/AppServer/lib\jmxremote_optional.jar;C:/Sun/AppServer/lib\jsf-api.jar;C:/Sun/AppServer/lib\jsf-impl.jar;C:/Sun/AppServer/lib\mail.jar;C:/Sun/AppServer/lib\relaxngDatatype.jar;C:/Sun/AppServer/lib\rmissl.jar;C:/Sun/AppServer/lib\saaj-api.jar;C:/Sun/AppServer/lib\saaj-impl.jar;C:/Sun/AppServer/lib\xalan.jar;C:/Sun/AppServer/lib\xercesImpl.jar;C:/Sun/AppServer/lib\xsdlib.jar;C:/Sun/AppServer/lib/install/applications/jmsra/imqjmsra.jar;C:/Sun/AppServer/imq/lib/jaxm-api.jar;C:/Sun/AppServer/imq/lib/fscontext.jar;C:/Sun/AppServer/lib/ant/lib/ant.jar;C:/Sun/AppServer/pointbase/lib/pbclient.jar;C:/Sun/AppServer/pointbase/lib/pbembedded.jar
    com.sun.enterprise.server.PEMain
    start
    display
    native|#]
    [#|2005-06-29T14:27:54.859+0530|INFO|sun-appserver-pe8.1_02|javax.enterprise.resource.jms|_ThreadID=10;|JMS5023: JMS service successfully started. Instance Name = imqbroker, Home = [C:\Sun\AppServer\imq\bin].|#]
    [#|2005-06-29T14:27:54.875+0530|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.core|_ThreadID=10;|CORE5098: AS Socket Service Initialization has been completed.|#]
    [#|2005-06-29T14:27:59.156+0530|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2005-06-29T14:27:59.343+0530|WARNING|sun-appserver-pe8.1_02|javax.enterprise.system.stream.err|_ThreadID=10;|java.lang.NoClassDefFoundError: javax/net/ssl/TrustManager
         at com.sun.enterprise.security.SecurityLifecycle.onInitialization(SecurityLifecycle.java:59)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:215)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:284)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]

    The missing class is part of the Java Dynamic Management Kit (JDMK)
    and is in the JAR file 'jdmkrt.jar'
    In my SOLARIS 9 installation the path is
    /opt/SUNWjdmk/5.1/lib/jdmkrt.jar
    My solution was to edit the the �asadmin� shell script
    and add the path to the above JAR file in its CLASSPATH
    $ vi /opt/SUNWappserver/sbin/asadmin
    -Djava.library.path=...:/opt/SUNWjdmk/5.1/lib: ...

  • Exception in Sun App Server 9

    Hi ,
    i was wondering why i get this stacktrace below when i access JSP page
    [#|2006-10-25T10:58:40.919+0800|SEVERE|sun-appserver-pe9.1|javax.enterprise.system.container.web|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;_RequestID=b573afc9-2776-432e-a955-15a99f9cff71;|StandardWrapperValve[Faces Servlet]: PWC1406: Servlet.service() for servlet Faces Servlet threw exception
    java.lang.NullPointerException
         at com.sun.faces.renderkit.html_basic.ButtonRenderer.getClearHiddenFieldScript(ButtonRenderer.java:313)
         at com.sun.faces.renderkit.html_basic.ButtonRenderer.encodeBegin(ButtonRenderer.java:212)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:810)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:239)
         at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:277)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.renderComponent(PopupCalendarRenderer.java:328)
         at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.encodeEnd(PopupCalendarRenderer.java:213)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.renderer.PanelGroupRenderer.encodeChildren(PanelGroupRenderer.java:61)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableColumnRenderer.encodeChildren(TableColumnRenderer.java:173)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableRowGroupRenderer.encodeChildren(TableRowGroupRenderer.java:185)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableRenderer.encodeChildren(TableRenderer.java:157)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:241)
         at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:277)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:893)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:241)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:153)
         at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at biz.autoscan.ils.security.SecurityFilter.doFilter(SecurityFilter.java:76)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:246)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:185)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:618)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.processNonBlocked(DefaultProcessorTask.java:549)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:789)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:328)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:251)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:205)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.WorkerThreadImpl.run(WorkerThreadImpl.java:103)
    But it was working fine when i use app server bundled with the Creator

    i dont know if this is related to the popup calendar thingy as u can see
    at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.renderComponent( PopupCalendarRenderer.java:328)
    at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.encodeEnd(PopupC alendarRenderer.java:213)
    Here is my structure of my JSP page but this error doesnt happen for all the pages.. only certain pages that has a ajax popup calendar bind to the table.
    Login.jsp ---> ( FilterPage.jsp) ( there is always a filter for every page ) -->SearchA.jsp
    my SearchA.jsp structure would as below
    -propertysheet
           -propertysection
                  -property
                         -table
                              -column1
                                ajax auto complete
                              -column2
                                 static text
                              - column3
                                 static text ( showing date )
                                 group panelDate
                                      popupCalendar
                                      msgforPopupCalendarHere is the subsequent stacktrace i got in my server.log
    [#|2006-10-25T10:58:40.915+0800|WARNING|sun-appserver-pe9.1|javax.enterprise.resource.webcontainer.jsf.lifecycle|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;_RequestID=b573afc9-2776-432e-a955-15a99f9cff71;|executePhase([b]RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@1bf1be2) threw exception
    com.sun.rave.web.ui.appbase.ApplicationException
         at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:601)
         at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:316)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at biz.autoscan.ils.security.SecurityFilter.doFilter(SecurityFilter.java:76)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:246)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:185)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:618)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.processNonBlocked(DefaultProcessorTask.java:549)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:789)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:328)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:251)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:205)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.WorkerThreadImpl.run(WorkerThreadImpl.java:103)
    Caused by: java.lang.NullPointerException
         at com.sun.faces.renderkit.html_basic.ButtonRenderer.getClearHiddenFieldScript(ButtonRenderer.java:313)
         at com.sun.faces.renderkit.html_basic.ButtonRenderer.encodeBegin(ButtonRenderer.java:212)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:810)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:239)
         at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:277)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.renderComponent(PopupCalendarRenderer.java:328)
         at com.sun.j2ee.blueprints.ui.popupcalendar.PopupCalendarRenderer.encodeEnd(PopupCalendarRenderer.java:213)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.renderer.PanelGroupRenderer.encodeChildren(PanelGroupRenderer.java:61)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableColumnRenderer.encodeChildren(TableColumnRenderer.java:173)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableRowGroupRenderer.encodeChildren(TableRowGroupRenderer.java:185)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.renderer.TableRenderer.encodeChildren(TableRenderer.java:157)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:241)
         at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:277)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:80)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.rave.web.ui.util.RenderingUtilities.renderComponent(RenderingUtilities.java:88)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encodeChild(LayoutElementBase.java:407)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutComponent.encodeThis(LayoutComponent.java:228)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:208)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutForEach.encode(LayoutForEach.java:169)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.component.util.descriptors.LayoutElementBase.encode(LayoutElementBase.java:225)
         at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeEnd(TemplateRenderer.java:125)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:893)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:241)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:153)
         at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
         ... 37 more
    |#]

  • Plz help error while starting j2ee server

    I 'm working on Win xp professional operating system.
    While starting the j2ee server from command line
    with the command
    j2ee -verbose
    earlier it was working perfectly but from 2 days its not starting even...even i have reinstalled the j2ee software ....i think there is some internal problem which is not related to setting up the enviornment variables and incorrectly typing of command... plz help me as soon as possible.. i wil be thankful ....
    I am getting error message as follows
    C:\Documents and Settings\Sunita Khilnaney>j2ee
    java.io.IOException: The system cannot find the path specified
    at java.io.Win32FileSystem.createFileExclusively(Native Method)
    at java.io.File.createNewFile(File.java:690)
    at com.sun.enterprise.repository.ConfigurationImpl.getServerRepository(C
    onfigurationImpl.java:92)
    at com.sun.enterprise.repository.ConfigurationImpl.<init>(ConfigurationI
    mpl.java:45)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:170)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    J2EE server listen port: 1050
    java.io.FileNotFoundException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (T
    he system cannot find the path specified)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:100)
    at com.sun.enterprise.server.J2EEServer.redirectStreams(J2EEServer.java:
    534)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:209)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    java.io.FileNotFoundException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (T
    he system cannot find the path specified)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:100)
    at com.sun.enterprise.server.J2EEServer.redirectStreams(J2EEServer.java:
    534)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:209)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    java.lang.RuntimeException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (The
    system cannot find the path specified)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:350)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    J2EE server reported the following error: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\sy
    stem.out (The system cannot find the path specified)
    Error executing J2EE server ...
    C:\Documents and Settings\Sunita Khilnaney>

    Hello sunita,
    do one thing put yoor j2ee server installation in a folder whose name doesn't contain space.
    As you can see there ia a space btwn Documents & and. btwn Sunita & Khilnaney
    C:\Documents and Settings\Sunita Khilnaney>j2ee
    put it in folder like c:\SunitaKhilnaney>j2ee or c:\Sunita_Khilnaney>j2ee
    I hope it'll solve your pblm.
    Thanks,
    Dinesh

  • Error while stating j2ee server

    I 'm working on Win xp professional operating system.
    While starting the j2ee server from command line
    with the command
    j2ee -verbose
    earlier it was working perfectly but from 2 days its not starting even...even i have reinstalled the j2ee software ....i think there is some internal problem which is not related to setting up the enviornment variables and incorrectly typing of command... plz help me as soon as possible.. i wil be thankful ....
    I am getting error message as follows
    C:\Documents and Settings\Sunita Khilnaney>j2ee
    J2EE server listen port: 1050
    java.io.FileNotFoundException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (A
    ccess is denied)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:100)
    at com.sun.enterprise.server.J2EEServer.redirectStreams(J2EEServer.java:
    534)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:209)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    java.io.FileNotFoundException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (A
    ccess is denied)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:100)
    at com.sun.enterprise.server.J2EEServer.redirectStreams(J2EEServer.java:
    534)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:209)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    java.lang.RuntimeException: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\system.out (Acce
    ss is denied)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:350)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:913)
    J2EE server reported the following error: C:\j2sdkee1.3\logs\compaq\j2ee\j2ee\sy
    stem.out (Access is denied)
    Error executing J2EE server ...
    C:\Documents and Settings\Sunita Khilnaney>

    1) This is the third thread and second forum you have posted on this same topic. Please cease and desist.
    2) I don't know why you think a JDBC forum is a good place for your J2EE configuration problems anyway.
    3) You didn't bother to respond to the last poster who offered you guidance.
    All in all I wouldn't recommend anyone wasting their time trying to help you until you can stay put in one thread and respond to those who do take the time to try and help you.

  • URGENT : J2ee server start up Error : .NoClassDefFoundError:

    i have installed j2ee1.3 server in my machine (XP professional / jdk1.5 /JRE 1.5 ).
    have set all env variables jAVA_HOME,J2EE_HOME ans PATH.
    But when i start the server using j2ee -verbose command i get the following error.
    C:\J2EE\bin>j2ee.bat -verbose
    J2EE server listen port: 1050
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/corba/se/inte
    rnal/util/IdentityHashtable
    at com.sun.corba.ee.internal.javax.rmi.CORBA.Util.<clinit>(Util.java:87)
    at com.sun.corba.ee.internal.POA.POAImpl.activate(POAImpl.java:935)
    at com.sun.corba.ee.internal.POA.POAImpl.activate_object(POAImpl.java:89
    5)
    at com.sun.corba.ee.internal.CosNaming.TransientNameService.initialize(T
    ransientNameService.java:117)
    at com.sun.corba.ee.internal.CosNaming.TransientNameService.<init>(Trans
    ientNameService.java:70)
    at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMg
    r.java:103)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    Also i have set the classpath to <<installdir>>\lib\j2ee.jar
    since iam practising for scbcd xam i need j2e1.3 to practise.
    Is this related to any version conflict ? please help me ...
    Thanks.

    Hi All,
    I was able to figure out the problem and i hope that there must be version conflicts since i had j2ee1.3 and jdk1.5.
    I unistalled jdk1.5 and installed jdk1.3 and everything went on fine.
    Also avoid installing in directories having spaces in the names EX: Program Files.

  • Why J2EE server cannot start up

    Hi,
    I downloaded SAP NetWeaver 2004 trial java edition. In the first several days it worked fine, but this week, after start up, J2EE server keeps in Starting apps stage. More than 24 hours has passed, but CPU time for J2EE server is only 2 minutes or so. Anybody knows why?
    Thanks,
    Ray

    Hi Raj,
    In services.msc all services related to EP are running - could you specify any service to check?
    The developer trace is very long... Hope you can take some time looking into it:)
    trc file: "C:\usr\sap\RA1\JC03\work\dev_server0", trc level: 1, release: "700"
    node name   : ID33225750
    pid         : 764
    system name : RA1
    system nr.  : 03
    started at  : Fri Feb 09 10:05:16 2007
    arguments       :
           arg[00] : C:\usr\sap\RA1\JC03\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\RA1\SYS\profile\RA1_JC03_SHG-D-01-RALI
           arg[02] : -DSAPINFO=RA1_03_server
           arg[03] : pf=C:\usr\sap\RA1\SYS\profile\RA1_JC03_SHG-D-01-RALI
    [Thr 1700] Fri Feb 09 10:05:16 2007
    [Thr 1700] *** WARNING => INFO: Unknown property [instance.box.number=RA1JC03shg-d-01-rali] [jstartxx.c   841]
    [Thr 1700] *** WARNING => INFO: Unknown property [instance.en.host=SHG-D-01-RALI] [jstartxx.c   841]
    [Thr 1700] *** WARNING => INFO: Unknown property [instance.en.port=3202] [jstartxx.c   841]
    [Thr 1700] *** WARNING => INFO: Unknown property [instance.system.id=3] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties]
    -> ms host    : SHG-D-01-RALI
    -> ms port    : 3902
    -> OS libs    : C:\usr\sap\RA1\JC03\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : SHG-D-01-RALI
    -> ms port    : 3902
    -> os libs    : C:\usr\sap\RA1\JC03\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID33225700 : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID33225750 : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID33225700           : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    -> [01] ID33225750           : C:\usr\sap\RA1\JC03\j2ee\cluster\instance.properties
    [Thr 1700] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 1700] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4608] JLaunchRequestFunc: Thread 4608 started as listener thread for np messages.
    [Thr 7720] WaitSyncSemThread: Thread 7720 started as semaphore monitor thread.
    [Thr 1700] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 1700] CPIC (version=700.2005.12.02)
    [Thr 1700] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 1700] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_09
    [Thr 1700] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\RA1\JC03\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID33225750]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_09
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -verbose:gc -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -XX:NewSize=170m -XX:MaxNewSize=170m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1023M
    -> init heap size     : 1023M
    -> root path          : C:\usr\sap\RA1\JC03\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\RA1\JC03\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\RA1\JC03\exe\jstartup.jar;C:\usr\sap\RA1\JC03\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50321
    -> shutdown timeout   : 120000
    [Thr 1700] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 5456] JLaunchIStartFunc: Thread 5456 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Denv.class.path=.;C:\j2sdk1.4.2_09\lib\dt.jar;C:\j2sdk1.4.2_09\lib\tools.jar
    -> arg[  4]: -Djava.security.policy=./java.policy
    -> arg[  5]: -Djava.security.egd=file:/dev/urandom
    -> arg[  6]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  7]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  8]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  9]: -Djco.jarm=1
    -> arg[ 10]: -verbose:gc
    -> arg[ 11]: -Djava.awt.headless=true
    -> arg[ 12]: -Dsun.io.useCanonCaches=false
    -> arg[ 13]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 14]: -XX:NewSize=170m
    -> arg[ 15]: -XX:MaxNewSize=170m
    -> arg[ 16]: -XX:MaxPermSize=192m
    -> arg[ 17]: -XX:PermSize=192m
    -> arg[ 18]: -XX:+DisableExplicitGC
    -> arg[ 19]: -XX:+UseParNewGC
    -> arg[ 20]: -XX:+PrintGCDetails
    -> arg[ 21]: -XX:+PrintGCTimeStamps
    -> arg[ 22]: -XX:SurvivorRatio=2
    -> arg[ 23]: -XX:TargetSurvivorRatio=90
    -> arg[ 24]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 25]: -verbose:gc
    -> arg[ 26]: -Dsys.global.dir=C:\usr\sap\RA1\SYS\global
    -> arg[ 27]: -Dapplication.home=C:\usr\sap\RA1\JC03\exe
    -> arg[ 28]: -Djava.class.path=C:\usr\sap\RA1\JC03\exe\jstartup.jar;C:\usr\sap\RA1\JC03\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 29]: -Djava.library.path=C:\j2sdk1.4.2_09\jre\bin\server;C:\j2sdk1.4.2_09\jre\bin;C:\j2sdk1.4.2_09\bin;C:\usr\sap\RA1\JC03\j2ee\os_libs;D:\sapdb\programs\bin;D:\sapdb\programs\pgm;C:\Program Files\Business Objects\common\3.5\bin\NOTES\;C:\Program Files\Business Objects\common\3.5\bin\NOTES\DATA\;C:\Perl\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Perforce;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin;D:\apache-ant-1.6.5\bin\ant.bat;C:\j2sdk1.4.2_09\bin;C:\PROGRA~1\ULTRAEDT;C:\usr\sap\RA1\SYS\exe\uc\NTI386
    -> arg[ 30]: -Xdebug
    -> arg[ 31]: -Xnoagent
    -> arg[ 32]: -Djava.compiler=NONE
    -> arg[ 33]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50321
    -> arg[ 34]: -Dmemory.manager=1023M
    -> arg[ 35]: -Xmx1023M
    -> arg[ 36]: -Xms1023M
    -> arg[ 37]: -DLoadBalanceRestricted=no
    -> arg[ 38]: -Djstartup.mode=JCONTROL
    -> arg[ 39]: -Djstartup.ownProcessId=764
    -> arg[ 40]: -Djstartup.ownHardwareId=U0597182229
    -> arg[ 41]: -Djstartup.whoami=server
    -> arg[ 42]: -Djstartup.debuggable=yes
    -> arg[ 43]: -DSAPINFO=RA1_03_server
    -> arg[ 44]: -DSAPSTARTUP=1
    -> arg[ 45]: -DSAPSYSTEM=03
    -> arg[ 46]: -DSAPSYSTEMNAME=RA1
    -> arg[ 47]: -DSAPMYNAME=SHG-D-01-RALI_RA1_03
    -> arg[ 48]: -DSAPDBHOST=SHG-D-01-RALI
    -> arg[ 49]: -Dj2ee.dbhost=SHG-D-01-RALI
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 5456] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4132] Fri Feb 09 10:05:32 2007
    [Thr 4132] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4132] Fri Feb 09 10:05:33 2007
    [Thr 4132] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4132] JLaunchISetClusterId: set cluster id 33225750
    [Thr 4132] Fri Feb 09 10:05:34 2007
    [Thr 4132] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4132] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Feb 09 10:05:58 2007
    0.000: [GC 0.000: [ParNew: 87039K->5609K(130560K), 0.0618351 secs] 87039K->5609K(1004032K), 0.0620479 secs]
    Fri Feb 09 10:06:11 2007
    13.711: [GC 13.711: [ParNew: 92648K->13719K(130560K), 0.1006891 secs] 92648K->13719K(1004032K), 0.1009082 secs]
    Fri Feb 09 10:06:21 2007
    22.938: [GC 22.938: [ParNew: 100759K->17546K(130560K), 0.0983195 secs] 100759K->17546K(1004032K), 0.0985291 secs]
    Fri Feb 09 10:06:31 2007
    33.003: [GC 33.003: [ParNew: 104523K->18144K(130560K), 0.0796866 secs] 104523K->18144K(1004032K), 0.0800654 secs]
    Fri Feb 09 10:06:41 2007
    42.968: [GC 42.968: [ParNew: 105171K->25065K(130560K), 0.1141939 secs] 105171K->25065K(1004032K), 0.1143590 secs]
    [Thr 4976] Fri Feb 09 10:06:44 2007
    [Thr 4976] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 4976] Fri Feb 09 10:06:48 2007
    [Thr 4976] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    Fri Feb 09 10:06:55 2007
    57.443: [GC 57.443: [ParNew: 112105K->27697K(130560K), 0.1356486 secs] 112105K->27697K(1004032K), 0.1358517 secs]
    Fri Feb 09 10:11:04 2007
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_09-b05 mixed mode):
    "SAPEngine_Application_Thread[impl:3]_28" prio=5 tid=0x0b627a90 nid=0x18f8 in Object.wait() [d98f000..d98fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_27" prio=5 tid=0x0b626c40 nid=0x1f24 in Object.wait() [d94f000..d94fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_26" prio=5 tid=0x0b625cb0 nid=0x1bbc in Object.wait() [d90f000..d90fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_25" prio=5 tid=0x0b624a90 nid=0x1e54 in Object.wait() [d8cf000..d8cfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_24" prio=5 tid=0x0b623760 nid=0x1814 in Object.wait() [d88f000..d88fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_23" prio=5 tid=0x0b622550 nid=0x1420 in Object.wait() [d84f000..d84fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_22" prio=5 tid=0x0b6213b0 nid=0x1ad4 in Object.wait() [d80f000..d80fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_21" prio=5 tid=0x0b621e90 nid=0x1234 in Object.wait() [d7cf000..d7cfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_20" prio=5 tid=0x0b60f740 nid=0x19bc in Object.wait() [d78f000..d78fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_19" prio=5 tid=0x0b61f4c0 nid=0x1d14 in Object.wait() [d74f000..d74fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_18" prio=5 tid=0x0b61e260 nid=0x1fe0 in Object.wait() [d70f000..d70fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_17" prio=5 tid=0x0b61ce00 nid=0x1f4c in Object.wait() [b6bf000..b6bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_16" prio=5 tid=0x0b61de90 nid=0x1fa8 in Object.wait() [b67f000..b67fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_15" prio=5 tid=0x0b61b7a0 nid=0x1c54 in Object.wait() [b43f000..b43fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_14" prio=5 tid=0x0b61b0b0 nid=0x11bc in Object.wait() [b3ff000..b3ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_13" prio=5 tid=0x0b61b4e0 nid=0x1ad0 in Object.wait() [b3bf000..b3bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_12" prio=5 tid=0x0b619320 nid=0x1c8c in Object.wait() [b37f000..b37fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_11" prio=5 tid=0x0b61ab30 nid=0x18cc in Object.wait() [b33f000..b33fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_10" prio=5 tid=0x0b6194f0 nid=0x1a74 in Object.wait() [b05f000..b05fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "Thread-32" prio=5 tid=0x0b6120a0 nid=0xc40 waiting on condition [b2ff000..b2ffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_Application_Thread[impl:3]_9" prio=5 tid=0x0b5f7cf0 nid=0x1254 in Object.wait() [b2bf000..b2bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.mw.jco.RequestListenerGroup$RequestQueue.getRequest(RequestListenerGroup.java:698)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8118)
         - locked <0x13089ac8> (a com.sap.mw.jco.RequestListenerGroup$RequestQueue)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8044)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "Thread-31" prio=5 tid=0x0b59e3e0 nid=0x1af0 waiting on condition [b27f000..b27fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-30" prio=5 tid=0x0b5aa5d0 nid=0x1f8c waiting on condition [b23f000..b23fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-29" prio=5 tid=0x0b5af260 nid=0x18d4 waiting on condition [b1ff000..b1ffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_Application_Thread[impl:3]_8" prio=5 tid=0x0b6082d0 nid=0xf88 in Object.wait() [b1bf000..b1bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x165366d8> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue.dequeue(ServiceOperationQueue.java:72)
         - locked <0x165366d8> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue)
         at com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationProcessor.run(ServiceOperationProcessor.java:73)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_7" prio=5 tid=0x0b58e550 nid=0x1288 waiting on condition [b17f000..b17fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:62)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_6" prio=5 tid=0x0b587c10 nid=0xfa0 waiting on condition [b13f000..b13fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:62)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_5" prio=5 tid=0x0b5735c0 nid=0x1708 waiting on condition [b0ff000..b0ffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:62)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "Thread-28" prio=5 tid=0x0b5fe4e0 nid=0x1dcc waiting on condition [b0bf000..b0bfd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.context.impl.UserConfigCache$ValidationThread.run(UserConfigCache.java:148)
    "JCoRequestDispatcher" daemon prio=5 tid=0x0b5e8150 nid=0x170c runnable [b01f000..b01fd90]
         at com.sap.mw.rfc.driver.CpicDriver.nativeSAP_CMLISTEN(Native Method)
         at com.sap.mw.rfc.driver.CpicDriver.SAP_CMLISTEN(CpicDriver.java:1126)
         at com.sap.mw.rfc.driver.RfcTypeRegisterCpic.waitForRequest(RfcTypeRegisterCpic.java:593)
         at com.sap.mw.rfc.api.RfcApi.RfcWaitForCpicRequest(RfcApi.java:1261)
         at com.sap.mw.jco.MiddlewareJRfc.waitForRequest(MiddlewareJRfc.java:580)
         at com.sap.mw.jco.RequestDispatcher$DispatcherWorker.run(RequestDispatcher.java:157)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-27" prio=10 tid=0x0b5e7bf0 nid=0x18c4 in Object.wait() [afdf000..afdfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155100b0> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0x155100b0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-26" prio=5 tid=0x0103e3b0 nid=0x1208 waiting on condition [af9f000..af9fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.fnd.cache.impl.ServerCacheManagerImpl$ValidationThread.run(ServerCacheManagerImpl.java:159)
    "CBS-Binary-Sweeper 33225750/32475870-b7e2-11db-b0f2-0010c6a7dd83" prio=10 tid=0x0b5dd910 nid=0x748 in Object.wait() [ae8f000..ae8fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15510168> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x15510168> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS-Deadnode-Detector 33225750/32475870-b7e2-11db-b0f2-0010c6a7dd83" prio=10 tid=0x0b5dedd0 nid=0x1868 in Object.wait() [ae4f000..ae4fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x164f1258> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x164f1258> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS Request Orc" prio=10 tid=0x0b5debf0 nid=0x18a4 in Object.wait() [ae0f000..ae0fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x164fede8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x164fede8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS TCS-queue Reader" prio=10 tid=0x0b5de290 nid=0x40c waiting on condition [adcf000..adcfd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.tc.cbs.server.rt.tcs.TCSQueueOrc.run(TCSQueueOrc.java:103)
         at java.lang.Thread.run(Thread.java:534)
    "CBS AccessQueue Orchestrator" prio=10 tid=0x0b5da9b0 nid=0x1f00 in Object.wait() [ad3f000..ad3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x165056a8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.sync.AccessOrc.run(AccessOrc.java:81)
         - locked <0x165056a8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS BSA Orc" prio=10 tid=0x0b54e6b0 nid=0x1930 in Object.wait() [acff000..acffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x164ff8b0> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x164ff8b0> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS-Pulsar 33225750/32475870-b7e2-11db-b0f2-0010c6a7dd83" prio=10 tid=0x0b582e90 nid=0xeec in Object.wait() [acbf000..acbfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x165084b8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x165084b8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS Resource Orc" prio=10 tid=0x0b586bc0 nid=0x18a8 in Object.wait() [aaff000..aaffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x16505e70> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x16505e70> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "JarmCondense" daemon prio=10 tid=0x0b5c3b90 nid=0x1ed8 in Object.wait() [ac7f000..ac7fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x16544d68> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.threadShouldContinue(CondenseThread.java:217)
         - locked <0x16544d68> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.run(CondenseThread.java:196)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-24" prio=5 tid=0x01025980 nid=0x1e8c waiting on condition [ac3f000..ac3fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:152)
    "Thread-23" prio=5 tid=0x0b5aae90 nid=0x1bd0 waiting on condition [abff000..abffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "JCO.TimeoutChecker" daemon prio=10 tid=0x0b5b0e90 nid=0x1c88 in Object.wait() [ab7f000..ab7fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x16544fa0> (a com.sap.mw.jco.util.ObjectList)
         at com.sap.mw.jco.JCO$PoolManager$TimeoutChecker.run(JCO.java:5672)
         - locked <0x16544fa0> (a com.sap.mw.jco.util.ObjectList)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-20" prio=10 tid=0x0b594650 nid=0x1b98 in Object.wait() [abbf000..abbfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x158ac358> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at com.sap.jmx.provider.ProviderConnectionTimer.run(ProviderConnectionTimer.java:31)
         - locked <0x158ac358> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-19" prio=10 tid=0x0b5914a0 nid=0x504 in Object.wait() [ab3f000..ab3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x16577548> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jmx.provider.LazyMBeanLoader.run(LazyMBeanLoader.java:133)
         - locked <0x16577548> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Thread.run(Thread.java:534)
    "_keystore_managed_system_thread_" prio=10 tid=0x01034650 nid=0x1aac in Object.wait() [aabf000..aabfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x16577730> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.keystore.impl.security.SystemThreadWorker.run(SystemThreadWorker.java:56)
         - locked <0x16577730> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-18" prio=10 tid=0x0b579c60 nid=0x1a2c waiting on condition [aa7f000..aa7fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.mp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:144)
    "ConnectionSetCleaner Thread (UNMANAGED)." prio=10 tid=0x0b4f4860 nid=0x1368 in Object.wait() [8e8f000..8e8fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x160fe2c0> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
         at com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner.run(ConnectionHashSet.java:682)
         - locked <0x160fe2c0> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
    "SAPEngine_System_Thread[impl:5]_48" prio=5 tid=0x0101c130 nid=0x12b4 in Object.wait() [aa3f000..aa3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x0101ce90 nid=0x1008 in Object.wait() [a9ff000..a9ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x165778d0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x165778d0> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:18)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_47" prio=5 tid=0x0101bd60 nid=0xe60 in Object.wait() [a9bf000..a9bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_46" prio=5 tid=0x0101a9b0 nid=0x1314 in Object.wait() [a97f000..a97fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_45" prio=5 tid=0x01019a90 nid=0x1d10 in Object.wait() [a93f000..a93fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_44" prio=5 tid=0x01018770 nid=0xf7c in Object.wait() [a8ff000..a8ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_43" prio=5 tid=0x00fa5e90 nid=0x1830 in Object.wait() [a8bf000..a8bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_42" prio=5 tid=0x010171c0 nid=0x1e04 in Object.wait() [a87f000..a87fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_41" prio=5 tid=0x010161f0 nid=0xf70 in Object.wait() [a83f000..a83fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_40" prio=5 tid=0x010155f0 nid=0x1e78 in Object.wait() [a7ff000..a7ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x010142e0 nid=0x1c10 in Object.wait() [a7bf000..a7bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x1657bee8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x1657bee8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_38" prio=5 tid=0x01014e90 nid=0x1534 in Object.wait() [a77f000..a77fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_37" prio=5 tid=0x01013a40 nid=0x1410 in Object.wait() [a73f000..a73fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_36" prio=5 tid=0x01012bb0 nid=0x1370 in Object.wait() [a6ff000..a6ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_35" prio=5 tid=0x010118c0 nid=0x21c in Object.wait() [a6bf000..a6bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15511858> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThre

Maybe you are looking for

  • Set order block for new business partner

    Hi experts, I have the requirement to set the order block for a business partner (based on some attributes) at the moment when it will be created or changed. I tried to use the BAdI BUPA_GENERAL_UPDATE where I am using the FM CRM_BUPA_FRG0050_READ/ C

  • Pivot query help

    Hi All, I have a table as Create table carClass ( carClassID  number, carID        number, baseYear   number, --Base Year Year_0      number, --Total for Base year Year_1      number, --Total for Base year minus 1 Year_2      number ) --Total for Bas

  • Help in copy command

    Hi Can i use parallel and append hint in while inserting data through copy command in sqlplus? My databse version is Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production PL/SQL Release 9.2.0.4.0 - Production CORE 9.2.0.3.0 Production TNS

  • Intercompany Scenario for Export and without Plant

    Hi Our client creates Big Projects; with two company Codes, One in India and another in Germany. They are working on PS. In most of the cases they get an order and they send the required material through Vendor, Vendor uses his Excise Invoice for sen

  • 10.4.10 Finder

    Hello, After updating from 10.4.9 to 10.4.10, the Finder has been acting up in very strange ways: 1) The Finder icon has been completely removed from my Dock and is now stuck in the bottom left corner. The icon stays in the front of every window, but