Ctx.lookup to access Portal System in EP

I have defined a new JDBC System in System Administration --> System Configuration on EP
I want to be able to access it in a JSPDyn page.
I know I can access a jdbc database via the JDBC Connector However I would like to take advantage of the UserMapping in the Portal System configuration.
Can anyone help with this issue?
I thought something like this would work but it is not
  ctx = new InitialContext();
  ds = (DataSource) ctx.lookup("jdbc/PLM_DB");
  conn = ds.getConnection();
  conn.setAutoCommit(false);
PLM_DB is defined in the Portal not in the J2EE Visual Administrator.
Thanks in advance for you help.
Rick Laird

Hi Rick,
    You have to use JCA to connect to database system you have defined in your portal. Do a search on JCA and database  and you should find plenty of example.
regards,
prakash

Similar Messages

  • Access portal system details in Web Dynpro ???

    Hello All,
    I have a requirement such that in my Web Dynpro application, I need to figure out that the backend R/3 it is trying to connect to, is it a unicode or a non unicode system.
    For this purpose, we maintain an additional alias name for the portal system starting with UNI_ if its a unicode box or NONUNI_ if its a non-unicode box.
    Is there any other better way of storing this information.
    <b>I need to know, how can we fetch all the alias names maintained for a sytem in portal using Web Dynpro APIs.</b>
    Please help.
    Thanks in advance,
    Samta

    Hi,
    please take a look at the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">tutorial section</a> here at SDN. This is a good starting point to learn WebDynpro.
    Regards
    Sebastian

  • Access denied (Object: com.sap.portal.system/security/no_safety)

    We are implementing EP 6.0, currently with SP11. We have developed some iViews, which are using RFC functions to get information from backend system, in this case SRM.
    Everything worked fine, till the day we’ve transported those developments into other systems (production and testing systems). We are getting the following error Access denied (Object: com.sap.portal.system/security/no_safety). This error only comes out if the iView is called from inside another one, if called isolated it works fine.
    Does any one have any idea about how to solve this?

    Hi AA, you can find in the log file in order to identify what is the object that you need to add in the security zone.
    You can find information for the security zones on:
    http://help.sap.com/saphelp_nw04/helpdata/en/25/85de55a94c4b5fa7a2d74e8ed201b0/content.htm
    Regards.

  • Error while accessing System created by  SAP Portal system template

    Hello all,
    I have created one system from SAP Portal system template in .net PDK application. This system have number of properties created in the .cs file of the System using the following code.
    [PortalComponentFieldProperty(PlainDescription = HOSTNAME, PropertyType = PropertyValueType.String, LongDescription = "Host Name", AdminPersonalization = PersonalizationType.Dialog, Category = "Application Settings")]
    [DefaultValue(EMPTYSTRING)]
    public string HostName
    get
    return (string)this.GetValue(HOSTNAME);
    When i created a system in EP from par file, It don't get any error but when i export this   system and again import it gives me the "Null reference exception error" at the line
    return (string)this.GetValue(HOSTNAME);
    Can anybody know the resion of this? Should i set permissions to the system or should i assign roles to the system?
    Please reply soon.
    Thanks in advance,
    Prashant

    Hi everyone
    I have got the solution
    Thanks
    Mumtaz

  • Accessing Portal MBeans?

    Hi
    I would like to access the Portal 4.0 MBeans via a client app. Here is my sample
    program:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    env.put(Context.PROVIDER_URL, "t3://xxxx-1:7501");
    env.put(Context.SECURITY_PRINCIPAL, "system");
    env.put(Context.SECURITY_CREDENTIALS, "xxxx");
    Context ctx = new InitialContext(env);
    MBeanHome homeBean = null ;
    homeBean = (MBeanHome)ctx.lookup(MBeanHome.JNDI_NAME + ".portalServer");
    Set s = null;
    Iterator iter = null;
    WebLogicMBean wBean = null;
    wBean = homeBean.getMBean("entityPropertyCache", com.bea.p13n.mbeans.CacheMBean.class.getName());
    if (wBean != null)
    System.out.println("It is " + wBean.getName());
    When I run this code, I get the following exception:
    Exception: javax.management.InstanceNotFoundException: portalDomain:Name=entityPropertyCache,Type=com.bea.p13n.mbeans.CacheMBean
    (admin server:true)
    Start server side stack trace:
    javax.management.InstanceNotFoundException: portalDomain:Name=entityPropertyCache,Type=com.bea.p13n.mbeans.CacheMBean
    (admin server:true)
         at weblogic.management.internal.MBeanHomeImpl.getMBean(MBeanHomeImpl.java:120)
         at weblogic.management.internal.MBeanHomeImpl.getMBean(MBeanHomeImpl.java:245)
         at weblogic.management.internal.MBeanHomeImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    Can the Gurus please tell me what I'm doing wrong? I have tried various routes to
    access the MBeans but nothing seems to work. The command-line weblogic.Admin GET
    yields no results either.
    Thanks,
    P Kesh

    Use queryNames instead of queryMBeans. queryNames returns a Set of ObjectName rather than a Set of ObjectInstance.
    �amonn McManus -- JMX Spec Lead -- http://weblogs.java.net/blog/emcmanus

  • Accessing Portal Runtime from CAF

    Hi All,
    We're developing Composite appln services (exposed as web services). We now want to access the portal runtime to retrieve system, user mapping information etc.
    Accessing PortalRuntime.getRuntimeResources() returns null (within the service mthds) as this web service resides outside the portal runtime.
    For now, we created an external library with libraries prtapi.jar, com.sap.portal.ivs.api_landscape_api.jar, com.sap.portal.ivs.api_portalpcm_api, com.sap.portal.ivs.systemlandscapeservice_api. This external library was included in the 'Used DCs' of the above-mentioned Composite Appln service DC. this enables me to compile and deploy the apis.
    what would be the best way to obtain a reference to the Portal runtime from this CAF?
    Do we need to add references to the following jars in application-j2ee-engine.xml? If so, how can I extend the SAP_SYSTEM_ADD_LIBS variable to show the following jars in the 'Installed libraries' list.
    prtapi.jar, com.sap.portal.ivs.api_landscape_api.jar, com.sap.portal.ivs.api_portalpcm_api, com.sap.portal.ivs.systemlandscapeservice_api
    Appreciate any pointers on the above. Thanks in advance!
    ~Prachi

    Hi Pankaj,
    I am not an expert but probably can still help you out...
    I did go through the URL and step 3 is divided in two steps:
    1. Making use of enviornment variable to access portal
    You can do that by (as mentioned in the URL example below) :
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
                "com.sapportals.portal.prt.registry.PortalRegistryFactory");
    InitialContext context = new InitialContext(env);
    2. Using the JNDI lookup accessing the portal service you wish to access.
    IXSLTransformService xslTransformService =
                (IXSLTransformService) context.lookup(
                "/broker/services/" + IXSLTransformService.KEY);
    where KEY is the name of the service, that you wish to access. This service name should be defined in the portalapp.xml file in the format of <application name>.<service name>.
    If you have any more questions, please feel free.
    Regards and Good Luck,
    Dharmi

  • Getting NULL for ctx.lookup

    Hi,
    I was creating a HTTP destination but getting below exception.
    OUTPUT:
    Start line
    ctx : javax.naming.InitialContext@f32b694
    Completed Step 1
    tc~sec~destinations~service
    Completed Step 2
    Inside if of dstService
    com.sap.engine.services.jndi.persistent.exceptions.NamingException: <--Localization failed: ResourceBundle='com.sap.engine.services.jndi.persistent.JNDIResourceBundle', ID='Destination Service not available', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key Destination Service not available
      at Client.main(Client.java:46)
    below is the code. I think the code is not getting destination service object from server. What is the step to add "destinationservice" in SAP NW 731 portal?
    import java.rmi.RemoteException;
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import com.sap.engine.services.jndi.persistent.exceptions.NamingException;
    import com.sap.security.core.server.destinations.api.DestinationException;
    import com.sap.security.core.server.destinations.api.DestinationService;
    import com.sap.security.core.server.destinations.api.HTTPDestination;
    public class Client {
      * @param args
      public static void main(String[] args) {
      // TODO Auto-generated method stub
      Hashtable<String, String>  env = new Hashtable<String, String>();
         env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
         env.put(Context.PROVIDER_URL, "<HostName>:<P4_port>");
         env.put(Context.SECURITY_PRINCIPAL, "<user>");
         env.put(Context.SECURITY_CREDENTIALS, "<password>");
      try{
      System.out.println("Start line");
      Context ctx = new InitialContext(env);
      System.out.println("ctx : " +ctx.toString());
      System.out.println("Completed Step 1");
      System.out.println(DestinationService.JNDI_KEY);
         DestinationService dstService = (DestinationService)ctx.lookup(DestinationService.JNDI_KEY); //getting null at this line
         System.out.println("Completed Step 2");
         if (dstService == null){
          System.out.println("Inside if of dstService");
          ctx.close();
             throw new NamingException("Destination Service not available");
         //Note: this only created the destination
         //it needs to be stored using dstService.storeDestination
         System.out.println("Completed Step 4");
         HTTPDestination destination = (HTTPDestination)
         dstService.createDestination("HTTP");
         destination.setUrl("http://<host>:<HTTP_port>");
         destination.setName("UMEConnection");
         destination.setUsernamePassword("<userName>", "<password>");
         dstService.storeDestination("HTTP", destination);
      }catch(DestinationException | RemoteException | javax.naming.NamingException e){
      e.printStackTrace();
    The ctx is coming as null.

    Hi Hamendra,
    Even after hard coding DestinationService.JNDI_KEY to tc~sec~destinations~service in the code, I am getting dstService = null.
    Is there anything else I need to change in SAP portal NWA?
    Is there any way to check the destination services that are available in SAP Portal?
    Thanks
    Alingan Patra

  • Error while accessing portal via internet

    Hi all,
    I am having problems when accessing portal through internet. I have installed NW04 SR1(WAS, EP & KM). Then I created some iviews and pages.
    Now <u>when I open the portal through internet(using its ip address)</u> and try to access PCD, it is showing <b>undefined</b> in place of the loading message and it is not loading anything. Also <b>the detailed navigation is empty</b> in all pages(eg. System Administration, Monitoring, etc.). But <u>when i access it locally(using machine name) everything works fine</u>. Any idea what the problem is?
    Another problem is with the KM Navigation IView. I have created a custom layout set for this iview. In the iview I am displaying the documents in a folder along with a link for approval process. But <b>when i click on the link, it shows javascript error "Access is denied"</b>. <u>This happens when I access it through internet. When I access it locally, it works fine and show me the context menu for approval</u>. Any idea?
    Please reply fast as it is urgent.
    Thanks in advance.
    Ranjith

    hi
    just check this out
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/37/c1513c388d8f0ce10000000a11405a/content.htm
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/e9/83d5f20ea845b587be83de8554191e/plain.htm

  • Error while trying to access portal

    Hi All,
    I have installed NetWeaver CE 7.1 in my system. But when i tried to access portal with the url
    http://<server name>: <port number>/irj/portal
    im getting the following error
    Error component failed , reason : Error while retrieving service: com.sap.portal.runtime.system.authentication.authentication Original Exception : Error while retrieving service: com.sap.portal.runtime.system.authentication.authentication
    Can anyone tell me what could be the reason for this error and how to resolve this?
    Please guide me........
    Regards,
    Padmalatha.K

    HI padmalatha kontham,
    If there is no any ignore option in the dilog box, just try to close it and try again. If u get that again, check the portnumber and hostname are correct or not.
    there won't be any problem other than that.
    example
    http://<host>:<port>/irj/portal
    Thanks
    Suresh

  • [Integration Engine Configuration Data] Error: No access to system landscap

    Hi all,
    When configuring Integration Engine Data (To go to 'Integration Engine Configuration Data' screen: Tcode: SXMB_ADM -> Choose: Integration Engine Configuration -> F8), we want to load Configuration from System Lanscape by choose F6, an error occur with message as below:
    No access to system landscap
    So that we can't load configuration from our System Landscape.
    We have correctly configured other below:
         - We use http port for corresponding Integration Server.
         - Business System with role 'Integration Server' created correctly in SLD.
         - T-code SLDCHECK is all OK.
         - T-code SXI_CACHE is all OK.
    Anyone can please help me correct this error ?
    Point will be reward for any valuable answer,
    Thanks a lot,
    Vinh Vo

    Please can you check if your RFC destination SAPSLDAPI and LCRSAPRFC are working both ABAP and Java stack.
    just check the reply from Udo and jai's reply
    R3 Connecte XI 3.0  Problem
    also check page no 18
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bd5950ff-0701-0010-a5bc-86d45fd52283

  • Failed in WD JNDI lookup in QA  Portal

    Hello Experts,
    I am facing the issue in custom WD application in QA portal system, in dev portal the application is working fine and after transporting the objects into QA portal ,while on preview the iview its giving me error : "Failed in WD JNDI lookup ".
    I have tested the WD application from Web dynpro console and its working fine , even i have created iview in QA portal and its working fine but while transporting the iview from DEV to QA Portal is not working . Can any one help me on that .
    Your help will highly appreciated ..
    Details error :
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name home~eth_dis
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.createAttrSetLayersList(AdminBaseiView.java:357)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getAttrSetLayersList(AdminBaseiView.java:205)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getCustomImplementation(AdminBaseiView.java:148)
        at com.sap.portal.pcm.admin.PcmAdminBase.getImplementation(PcmAdminBase.java:530)
        at com.sapportals.portal.ivs.iviews.IviewServiceObjectFactory.getObjectInstance(IviewServiceObjectFactory.java:442)
        ... 40 more

    Hi Shanti,
    Thanks for the quick response.
    My portal version is EP 7 with SP21 .As I mention in my thread that I have tested custom application on QA Portal  and its working fine. But the problem is only appearing with the transported iview into QA portal.
    Regards
    Rashi

  • JNDI NameNotFoundException on ctx.lookup in WLS 6.1

    Hi dear all
    When deploying several entity beans in WLS 6.1 we always get a
    NameNotFoundException on the ctx.lookup for each bean. The JNDI name is
    defined (for every bean) in the IDE and also available in the WLS console
    (i.e. also in the deployment descriptor).
    Calling the ctx.lookup on the JNDI name for a DataSource defined in WLS does
    not raise an NameNotFoundException but a ClassCastException on the following
    "narrow" method (a DataSource object is not a bean --> so the WLS/VM runtime
    environment works right).
    Obviously, the JNDI names for the beans can not be determined/found
    correctly because of a deployment/version problem?!
    We're using JBuilder 5.0 and WLS 6.1SP1 on NT 4.0 (might be a/the problem?).
    Thx in advance
    Markus

    The java:comp/env namespace is specific to each individual component (i.e.,
    every component can potentially see a different set of objects with different
    names and/or the same objects with different names). For an EJB reference
    lookup, I believe that we automatically bind it under java:comp/env/ejb so if
    you specify the name of the ejb-ref as MyBeanHome in the ejb-jar.xml file, then
    the EJB whose deployment descriptor contains this ejb-ref entry can look up that
    referenced bean's home at java:comp/env/ejb/MyBeanHome. When you specify the
    JNDI name under which a bean will be deployed, we do not automatically make that
    bean home available to other beans in their respective java:comp/env/ejb
    namespaces (though they are accessible via the global JNDI name used to register
    the bean). To get this, you must create the ejb-ref entries and their
    corresponding ejb-reference-description entries in the deployment descriptors.
    Hope this helps,
    Robert
    Programit wrote:
    Ditto. I'm experiencing the same problem.
    I've spent a great deal of time working with this stuff. I believe Weblogic
    is lacking in their support here. It's obvious that something isn't working
    correctly, because everything was working fine before I installed WLS6.1
    with SP1. In fact, I have two systems running right now: The code and
    deployment descriptors are exactly the same. The System works fine in
    WLS6.1. The System does NOT work in WLS6.1 SP1 becuase of these damn Naming
    issues.
    We've deployed with the BEA RDBMS Security Realm -- without modification.
    Other than that, everything else is pretty standard. The JNDI tree on the
    Weblogic console doesn't work either. It says it can resolve "comp"!!!!
    "kefah Seyed" <[email protected]> wrote in message
    news:[email protected]...> Hi Markus
    I send this message because I have the same
    problem with JNDI. My envirronment is the
    same : I'm under nt 4.0 with weblogic 6.1
    but I use Together 5.5 and I tried to deploy manually the EJB.
    But it's always the same error.
    I tried under WebSphere and with a name
    like "java:comp/env/ejb-name" it work.
    So I tried all I could if you have a solution now please send me amessage.

  • Issue with starting the portal system

    Hi Experts,
    We are getting an error like : stopped, license check failed " in our SAP portal system.
    For that I have installed license, added the parameters like XMX and XMs in configtool but no luck.
    Can anybody please help me out to resolve the issue, its very urgent.
    Thanks in advance.
    Bhaskar N

    Hello RB,
    Thanks for the quick reply.
    Please find the desired logs.
    1. DEV_DISPATCHER
    2. dev_server0
    1. DEV_DISPATCHER log:
    trc file: "dev_dispatcher", trc level: 1, release: "720"
    node name   : ID39070400
    pid         : 5796
    system name : EPD
    system nr.  : 03
    started at  : Mon Mar 03 22:42:58 2014
    arguments   :
       arg[00] : E:\usr\sap\EPD\JC03\exe\jlaunch.exe
       arg[01] : pf=E:\usr\sap\EPD\SYS\profile\EPD_JC03_sapserver
       arg[02] : -DSAPINFO=EPD_03_dispatcher
       arg[03] : pf=E:\usr\sap\EPD\SYS\profile\EPD_JC03_sapserver
    Used property files
    -> files [00] : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID39070400 : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID39070450 : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID39070400           : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [01] ID39070450           : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties]
    -> ms host    : sapserver
    -> ms port    : 3904
    -> OS libs    : E:\usr\sap\EPD\JC03\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    [Thr 1904] Mon Mar 03 22:42:58 2014
    [Thr 1904] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 1904] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4688] JLaunchRequestFunc: Thread 4688 started as listener thread for np messages.
    [Thr 3032] WaitSyncSemThread: Thread 3032 started as semaphore monitor thread.
    [Thr 1904] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=32768;cur=2048)
    [Thr 1904] Mon Mar 03 22:42:59 2014
    [Thr 1904] CCMS: Initialized monitoring segment of size 60000000.
    [Thr 1904] CCMS: Initialized CCMS Headers in the shared monitoring segment.
    [Thr 1904] CCMS: Checking Downtime Configuration of Monitoring Segment.
    [Thr 1904] CCMS: AlMsUpload called by wp 1004.
    [Thr 1904] CCMS: AlMsUpload successful for E:\usr\sap\EPD\JC03\log\ALMTTREE.DAT (432 MTEs).
    [Thr 1904] CCMS: CCMS Monitoring Initialization finished, rc=0.
    [Thr 1904] [Node: dispatcher] java home is set by profile parameter
    [Thr 1904]  Java Home: C:\j2sdk1.4.2_17-x64
    [Thr 1904] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\EPD\JC03\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID39070400]
    -> node name          : dispatcher
    -> node type          : dispatcher
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_17-x64
    -> java parameters    : -verbose:gc -Djava.security.policy=./java.policy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 512M
    -> init heap size     : 256M
    -> stack size         : 2M
    -> root path          : E:\usr\sap\EPD\JC03\j2ee\cluster\dispatcher
    -> class path         : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\EPD\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     : E:\usr\sap\EPD\JC03\exe\jstartup.jar;E:\usr\sap\EPD\JC03\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50000
    -> shutdown timeout   : 120 sec.
    [Thr 1904] JLaunchISetDebugMode: set debug mode [no]
    [Thr 7832] JLaunchIStartFunc: Thread 7832 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [dispatcher]
    -> stack   : 2097152 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -verbose:gc
    -> arg[  4]: -Djava.security.policy=./java.policy
    -> arg[  5]: -Dsys.global.dir=E:\usr\sap\EPD\SYS\global
    -> arg[  6]: -Dapplication.home=E:\usr\sap\EPD\JC03\exe
    -> arg[  7]: -Djava.class.path=E:\usr\sap\EPD\JC03\exe\jstartup.jar;E:\usr\sap\EPD\JC03\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> arg[  8]: -Djava.library.path=C:\j2sdk1.4.2_17-x64\jre\bin\server;C:\j2sdk1.4.2_17-x64\jre\bin;C:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\EPD\JC03\j2ee\os_libs;C:\j2sdk1.4.2_17-x64\jre\bin\server;C:\j2sdk1.4.2_17-x64\jre\bin;E:\usr\sap\EPD\JC03\exe;E:\usr\sap\EPD\JC03\j2ee\os_libs;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\Redist\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Amazon\cfn-bootstrap\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\EPD\SYS\exe\uc\NTAMD64
    -> arg[  9]: -Dmemory.manager=512M
    -> arg[ 10]: -Xmx512M
    -> arg[ 11]: -Xms256M
    -> arg[ 12]: -Xss2M
    -> arg[ 13]: -DLoadBalanceRestricted=no
    -> arg[ 14]: -Djstartup.mode=JCONTROL
    -> arg[ 15]: -Djstartup.ownProcessId=5796
    -> arg[ 16]: -Djstartup.ownHardwareId=N0626931994
    -> arg[ 17]: -Djstartup.whoami=dispatcher
    -> arg[ 18]: -Djstartup.debuggable=no
    -> arg[ 19]: -DSAPINFO=EPD_03_dispatcher
    -> arg[ 20]: -DSAPSTARTUP=1
    -> arg[ 21]: -DSAPSYSTEM=03
    -> arg[ 22]: -DSAPSYSTEMNAME=EPD
    -> arg[ 23]: -DSAPMYNAME=sapserver_EPD_03
    -> arg[ 24]: -DSAPDBHOST=SAPSERVER
    -> arg[ 25]: -Dj2ee.dbhost=SAPSERVER
    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 7832] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [dispatcher]
    [Thr 7888] JHVM_RegisterNatives: com.sap.bc.krn.perf.PerfTimes
    [Thr 7888] Mon Mar 03 22:43:00 2014
    [Thr 7888] JHVM_RegisterNatives: com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 7888] JLaunchISetClusterId: set cluster id 39070400
    [Thr 7888] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 7888] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Mon Mar 03 22:43:01 2014
    [GC 69952K->4481K(253440K), 0.0239149 secs]
    [Thr 8152] Mon Mar 03 22:43:02 2014
    [Thr 8152] JLaunchISetTelnetPort: set telnet port 50308
    [Thr 8152] JLaunchISetTelnetPort: set telnet port 50308
    [Thr 1228] JLaunchISetP4Port: set p4 port 50304
    [GC 74433K->7216K(253440K), 0.0246788 secs]
    [Full GC 8536K->7011K(253440K), 0.0533618 secs]
    [Thr 7344] Mon Mar 03 22:43:03 2014
    [Thr 7344] JLaunchISetHttpPort: set http port 50300
    [Thr 7344] JLaunchISetHttpsPort: set https port 50301
    [Thr 7452] JHVM_RegisterNatives: com.sap.mona.api.JMonAPI
    [Thr 7452] CCMS: openMonitoringSegment(): inside static JMON Lib: already connected.
    [Thr 7888] JLaunchISetState: change state from [Starting (2)] to [Running (3)]
    [Thr 5924] Mon Mar 03 22:43:14 2014
    [Thr 5924] JLaunchISetP4Port: set p4 port 50304
    Mon Mar 03 22:44:02 2014
    [Full GC 58035K->10932K(253888K), 0.0868018 secs]
    [Thr 3564] Mon Mar 03 22:45:49 2014
    [Thr 3564] JLaunchISetHttpPort: set http port 50300
    [Thr 3564] JLaunchISetHttpsPort: set https port 50301
    Mon Mar 03 22:59:04 2014
    [GC 81460K->12451K(254080K), 0.0114090 secs]
    [Thr 4764] Mon Mar 03 23:13:03 2014
    [Thr 4764] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 4764] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    [Thr 2304] JLaunchISetP4Port: set p4 port 50304
    [Thr 6124] Mon Mar 03 23:13:04 2014
    [Thr 6124] JLaunchISetHttpsPort: set https port 50301
    [Thr 6124] JLaunchISetHttpPort: set http port 50300
    [Thr 1512] Mon Mar 03 23:13:07 2014
    [Thr 1512] CCMS: closeMonitoringSegment(): inside static JMON Lib: nothing to do.
    [Thr 5888] Mon Mar 03 23:13:09 2014
    [Thr 5888] JLaunchISetTelnetPort: set telnet port 50308
    [Thr 8152] Mon Mar 03 23:13:10 2014
    [Thr 8152] JLaunchISetHttpPort: set http port 50300
    [Thr 4764] Mon Mar 03 23:13:13 2014
    [Thr 4764] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 4740] JLaunchIExitJava: exit hook is called (rc = -11111)
    [Thr 4740] **********************************************************************
    [Thr 4740] *** ERROR => The Java VM terminated with a non-zero exit code.
    [Thr 4740] *** Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    [Thr 4740] *** for additional information and trouble shooting.
    [Thr 4740] **********************************************************************
    [Thr 4740] JLaunchCloseProgram: good bye (exitcode = -11111)
    2.  DEV_SERVER0
    trc file: "dev_server0", trc level: 1, release: "720"
    node name   : ID39070450
    pid         : 6488
    system name : EPD
    system nr.  : 03
    started at  : Mon Mar 03 22:42:58 2014
    arguments   :
       arg[00] : E:\usr\sap\EPD\JC03\exe\jlaunch.exe
       arg[01] : pf=E:\usr\sap\EPD\SYS\profile\EPD_JC03_sapserver
       arg[02] : -DSAPINFO=EPD_03_server
       arg[03] : pf=E:\usr\sap\EPD\SYS\profile\EPD_JC03_sapserver
    Used property files
    -> files [00] : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID39070400 : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID39070450 : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID39070400           : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    -> [01] ID39070450           : E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\EPD\JC03\j2ee\cluster\instance.properties]
    -> ms host    : sapserver
    -> ms port    : 3904
    -> OS libs    : E:\usr\sap\EPD\JC03\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    [Thr 7628] Mon Mar 03 22:42:58 2014
    [Thr 7628] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 7628] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 5952] JLaunchRequestFunc: Thread 5952 started as listener thread for np messages.
    [Thr 4596] WaitSyncSemThread: Thread 4596 started as semaphore monitor thread.
    [Thr 7628] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=32768;cur=2048)
    [Thr 7628] MPI: dynamic quotas disabled.
    [Thr 7628] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    [Thr 7628] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Ext.
    [Thr 7628] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Ext.
    [Thr 7628] Mon Mar 03 22:42:59 2014
    [Thr 7628] CCMS: CCMS Monitoring Initialization finished, rc=0.
    [Thr 7628] [Node: server0] java home is set by profile parameter
    [Thr 7628]  Java Home: C:\j2sdk1.4.2_17-x64
    [Thr 7628] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\EPD\JC03\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID39070450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_17-x64
    -> java parameters    : -XX:MaxNewSize=341M -XX:NewSize=341M -XX:MaxPermSize=2048M -XX:PermSize=2048M -XX:ReservedCodeCacheSize=64M -XX:CodeCacheMinimumFreeSpace=2M -XX:CompilerThreadStackSize=4096 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -XX:+HandlePromotionFailure -XX:+UseParNewGC -XX:+DisableExplicitGC -XX:+UseTLAB -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -verbose:gc -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -Djco.jarm=1 -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djava.security.policy=./java.policy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> stack size         : 2M
    -> root path          : E:\usr\sap\EPD\JC03\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\EPD\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     : E:\usr\sap\EPD\JC03\exe\jstartup.jar;E:\usr\sap\EPD\JC03\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50321
    -> shutdown timeout   : 120 sec.
    [Thr 7628] JLaunchISetDebugMode: set debug mode [no]
    [Thr 5748] JLaunchIStartFunc: Thread 5748 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 2097152 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -XX:MaxNewSize=341M
    -> arg[  4]: -XX:NewSize=341M
    -> arg[  5]: -XX:MaxPermSize=2048M
    -> arg[  6]: -XX:PermSize=2048M
    -> arg[  7]: -XX:ReservedCodeCacheSize=64M
    -> arg[  8]: -XX:CodeCacheMinimumFreeSpace=2M
    -> arg[  9]: -XX:CompilerThreadStackSize=4096
    -> arg[ 10]: -XX:SurvivorRatio=2
    -> arg[ 11]: -XX:TargetSurvivorRatio=90
    -> arg[ 12]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 13]: -XX:+HandlePromotionFailure
    -> arg[ 14]: -XX:+UseParNewGC
    -> arg[ 15]: -XX:+DisableExplicitGC
    -> arg[ 16]: -XX:+UseTLAB
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -XX:+PrintGCDetails
    -> arg[ 19]: -verbose:gc
    -> arg[ 20]: -Dsun.io.useCanonCaches=false
    -> arg[ 21]: -Djava.awt.headless=true
    -> arg[ 22]: -Djco.jarm=1
    -> arg[ 23]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 24]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 25]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 26]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 27]: -Djava.security.policy=./java.policy
    -> arg[ 28]: -Dsys.global.dir=E:\usr\sap\EPD\SYS\global
    -> arg[ 29]: -Dapplication.home=E:\usr\sap\EPD\JC03\exe
    -> arg[ 30]: -Djava.class.path=E:\usr\sap\EPD\JC03\exe\jstartup.jar;E:\usr\sap\EPD\JC03\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 31]: -Djava.library.path=C:\j2sdk1.4.2_17-x64\jre\bin\server;C:\j2sdk1.4.2_17-x64\jre\bin;C:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\EPD\JC03\j2ee\os_libs;C:\j2sdk1.4.2_17-x64\jre\bin\server;C:\j2sdk1.4.2_17-x64\jre\bin;E:\usr\sap\EPD\JC03\exe;E:\usr\sap\EPD\JC03\j2ee\os_libs;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\Redist\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Amazon\cfn-bootstrap\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\EPD\SYS\exe\uc\NTAMD64
    -> arg[ 32]: -Dmemory.manager=2048M
    -> arg[ 33]: -Xmx2048M
    -> arg[ 34]: -Xms2048M
    -> arg[ 35]: -Xss2M
    -> arg[ 36]: -DLoadBalanceRestricted=no
    -> arg[ 37]: -Djstartup.mode=JCONTROL
    -> arg[ 38]: -Djstartup.ownProcessId=6488
    -> arg[ 39]: -Djstartup.ownHardwareId=N0626931994
    -> arg[ 40]: -Djstartup.whoami=server
    -> arg[ 41]: -Djstartup.debuggable=no
    -> arg[ 42]: -DSAPINFO=EPD_03_server
    -> arg[ 43]: -DSAPSTARTUP=1
    -> arg[ 44]: -DSAPSYSTEM=03
    -> arg[ 45]: -DSAPSYSTEMNAME=EPD
    -> arg[ 46]: -DSAPMYNAME=sapserver_EPD_03
    -> arg[ 47]: -DSAPDBHOST=SAPSERVER
    -> arg[ 48]: -Dj2ee.dbhost=SAPSERVER
    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 5748] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 1032] JHVM_RegisterNatives: com.sap.bc.krn.perf.PerfTimes
    [Thr 1032] Mon Mar 03 22:43:00 2014
    [Thr 1032] JHVM_RegisterNatives: com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 1032] JLaunchISetClusterId: set cluster id 39070450
    [Thr 1032] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 1032] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Mon Mar 03 22:43:03 2014
    4.478: [GC 4.479: [ParNew: 174592K->13251K(261888K), 0.0194709 secs] 174592K->13251K(2009856K), 0.0195617 secs]
    Mon Mar 03 22:43:05 2014
    5.993: [GC 5.993: [ParNew: 187843K->17030K(261888K), 0.0180592 secs] 187843K->17030K(2009856K), 0.0181147 secs]
    Mon Mar 03 22:43:06 2014
    7.007: [GC 7.007: [ParNew: 191622K->21653K(261888K), 0.0196801 secs] 191622K->21653K(2009856K), 0.0197325 secs]
    7.957: [GC 7.958: [ParNew
    Mon Mar 03 22:43:07 2014
    : 196245K->26926K(261888K), 0.0219345 secs] 196245K->26926K(2009856K), 0.0219910 secs]
    8.748: [GC 8.748: [ParNew: 201518K->26768K(261888K), 0.0159709 secs] 201518K->26768K(2009856K), 0.0160271 secs]
    Mon Mar 03 22:43:11 2014
    12.303: [GC 12.303: [ParNew: 201360K->39849K(261888K), 0.0235613 secs] 201360K->39849K(2009856K), 0.0236201 secs]
    Mon Mar 03 22:43:12 2014
    13.764: [GC 13.764: [ParNew: 214441K->51006K(261888K), 0.0275011 secs] 214441K->51006K(2009856K), 0.0275712 secs]
    [Thr 5660] Mon Mar 03 22:43:13 2014
    [Thr 5660] JHVM_RegisterNatives: com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 5660] JHVM_RegisterNatives: 23 of 24 methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface registered.
    14.370: [GC 14.370: [ParNew: 225598K->56305K(261888K), 0.0279098 secs] 225598K->56305K(2009856K), 0.0279778 secs]
    [Thr 6920] JHVM_RegisterNatives: com.sap.mw.rfc.driver.CpicDriver
    14.843: [GC 14.843: [ParNew: 230897K->63530K(261888K), 0.0281481 secs] 230897K->63530K(2009856K), 0.0282183 secs]
    [Thr 6892] Mon Mar 03 22:43:14 2014
    [Thr 6892] JHVM_RegisterNatives: com.sap.mona.api.JMonAPI
    [Thr 6892] CCMS: openMonitoringSegment(): inside static JMON Lib: already connected.
    15.306: [GC 15.306: [ParNew: 238122K->68202K(261888K), 0.0274166 secs] 238122K->68202K(2009856K), 0.0274798 secs]
    [Thr 1032] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    15.436: [GC 15.436: [ParNew: 242794K->67368K(261888K), 0.0220680 secs] 242794K->67368K(2009856K), 0.0221288 secs]
    15.573: [GC 15.573: [ParNew: 241960K->67438K(261888K), 0.0234275 secs] 241960K->67438K(2009856K), 0.0234885 secs]
    15.711: [GC 15.711: [ParNew: 242030K->67708K(261888K), 0.0262813 secs] 242030K->67708K(2009856K), 0.0263393 secs]
    Mon Mar 03 22:43:29 2014
    30.645: [GC 30.645: [ParNew: 242300K->74148K(261888K), 0.0283018 secs] 242300K->74148K(2009856K), 0.0283638 secs]
    Mon Mar 03 22:43:31 2014
    32.620: [GC 32.620: [ParNew: 248740K->75223K(261888K), 0.0257514 secs] 248740K->75223K(2009856K), 0.0258081 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Mon Mar 03 22:43:32 2014
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readSequence
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readElement
    Mon Mar 03 22:43:33 2014
    34.362: [GC 34.363: [ParNew: 249815K->79362K(261888K), 0.0265979 secs] 249815K->79362K(2009856K), 0.0266516 secs]
    ### Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.GeneratedComplexType::_loadInto
    Mon Mar 03 22:43:36 2014
    37.029: [GC 37.029: [ParNew: 253954K->82398K(261888K), 0.0355728 secs] 253954K->91621K(2009856K), 0.0356328 secs]
    Mon Mar 03 22:43:42 2014
    43.223: [GC 43.223: [ParNew: 256990K->80727K(261888K), 0.0285237 secs] 266213K->95024K(2009856K), 0.0285807 secs]
    Mon Mar 03 22:43:43 2014
    44.172: [GC 44.173: [ParNew: 255319K->87296K(261888K), 0.0323572 secs] 269616K->108693K(2009856K), 0.0324116 secs]
    Mon Mar 03 22:43:45 2014
    46.457: [GC 46.457: [ParNew: 261888K->87296K(261888K), 0.0319191 secs] 283285K->118557K(2009856K), 0.0319753 secs]
    Mon Mar 03 22:43:47 2014
    48.151: [GC 48.151: [ParNew: 261888K->87296K(261888K), 0.0408932 secs] 293149K->136872K(2009856K), 0.0409462 secs]
    Mon Mar 03 22:43:48 2014
    49.856: [GC 49.856: [ParNew: 261888K->87296K(261888K), 0.0389379 secs] 311464K->156250K(2009856K), 0.0389939 secs]
    Mon Mar 03 22:43:50 2014
    51.675: [GC 51.675: [ParNew: 261888K->87296K(261888K), 0.0355912 secs] 330842K->172468K(2009856K), 0.0356455 secs]
    Mon Mar 03 22:43:53 2014
    54.263: [GC 54.264: [ParNew: 261888K->83557K(261888K), 0.0302645 secs] 347060K->184425K(2009856K), 0.0303190 secs]
    Mon Mar 03 22:43:54 2014
    55.609: [GC 55.609: [ParNew: 258149K->87296K(261888K), 0.0521419 secs] 359017K->199580K(2009856K), 0.0521980 secs]
    Mon Mar 03 22:43:56 2014
    57.420: [GC 57.420: [ParNew: 261888K->87296K(261888K), 0.0422072 secs] 374172K->223966K(2009856K), 0.0422640 secs]
    Mon Mar 03 22:43:57 2014
    58.067: [GC 58.067: [ParNew: 261888K->87295K(261888K), 0.0708439 secs] 398558K->238852K(2009856K), 0.0708999 secs]
    58.721: [GC 58.721: [ParNew: 261887K->87295K(261888K), 0.0663770 secs] 413444K->253329K(2009856K), 0.0664304 secs]
    Mon Mar 03 22:43:58 2014
    ### Excluding compile:  com.sapportals.portal.prt.jndisupport.util.AbstractHierarchicalContext::lookup
    59.576: [GC 59.576: [ParNew: 261887K->85457K(261888K), 0.0657517 secs] 427921K->268410K(2009856K), 0.0658080 secs]
    Mon Mar 03 22:43:59 2014
    60.161: [GC 60.161: [ParNew: 260049K->74577K(261888K), 0.0373604 secs] 443002K->272164K(2009856K), 0.0374148 secs]
    60.502: [GC 60.502: [ParNew: 249169K->75624K(261888K), 0.0338736 secs] 446756K->273211K(2009856K), 0.0339292 secs]
    60.648: [GC 60.648: [ParNew: 250216K->75377K(261888K), 0.0330402 secs] 447803K->272964K(2009856K), 0.0330958 secs]
    60.781: [GC 60.781: [ParNew: 249969K->75388K(261888K), 0.0360987 secs] 447556K->272975K(2009856K), 0.0361531 secs]
    60.922: [GC 60.922: [ParNew: 249980K->75544K(261888K), 0.0342044 secs] 447567K->273131K(2009856K), 0.0342679 secs]
    Mon Mar 03 22:44:00 2014
    61.875: [GC 61.876: [ParNew: 250136K->76774K(261888K), 0.0226955 secs] 447723K->274362K(2009856K), 0.0227581 secs]
    Mon Mar 03 22:44:01 2014
    62.926: [GC 62.926: [ParNew
    Mon Mar 03 22:44:02 2014
    : 251366K->87296K(261888K), 0.0509195 secs] 448954K->293847K(2009856K), 0.0509775 secs]
    63.692: [GC 63.692: [ParNew: 261888K->87295K(261888K), 0.0605936 secs] 468439K->312518K(2009856K), 0.0606752 secs]
    Mon Mar 03 22:44:03 2014
    64.698: [GC 64.698: [ParNew: 261887K->86837K(261888K), 0.0443530 secs] 487110K->320064K(2009856K), 0.0444111 secs]
    Mon Mar 03 22:44:05 2014
    66.325: [GC 66.325: [ParNew: 261429K->87296K(261888K), 0.0358209 secs] 494656K->334308K(2009856K), 0.0358812 secs]
    Mon Mar 03 22:44:06 2014
    67.915: [GC 67.915: [ParNew: 261888K->87295K(261888K), 0.0316789 secs] 508900K->344529K(2009856K), 0.0317364 secs]
    Mon Mar 03 22:44:08 2014
    69.638: [GC 69.638: [ParNew: 261887K->87295K(261888K), 0.0299563 secs] 519121K->354574K(2009856K), 0.0300111 secs]
    Mon Mar 03 22:44:10 2014
    71.017: [GC 71.017: [ParNew: 261887K->81266K(261888K), 0.0255540 secs] 529166K->357088K(2009856K), 0.0256097 secs]
    Mon Mar 03 22:44:12 2014
    73.867: [GC 73.867: [ParNew: 255858K->68447K(261888K), 0.0284370 secs] 531680K->358304K(2009856K), 0.0284926 secs]
    Mon Mar 03 22:44:15 2014
    76.039: [GC 76.039: [ParNew: 243039K->83981K(261888K), 0.0237496 secs] 532896K->373838K(2009856K), 0.0238097 secs]
    Mon Mar 03 22:44:17 2014
    78.445: [GC 78.445: [ParNew: 258573K->87296K(261888K), 0.0315224 secs] 548430K->395149K(2009856K), 0.0315791 secs]
    Mon Mar 03 22:44:20 2014
    81.224: [GC 81.224: [ParNew: 261888K->82358K(261888K), 0.0288764 secs] 569741K->406261K(2009856K), 0.0289497 secs]
    Mon Mar 03 22:44:22 2014
    83.417: [GC 83.417: [ParNew: 256950K->79593K(261888K), 0.0250265 secs] 580853K->414934K(2009856K), 0.0250833 secs]
    Mon Mar 03 22:44:24 2014
    85.013: [GC 85.013: [ParNew: 254185K->76493K(261888K), 0.0237636 secs] 589526K->421161K(2009856K), 0.0238215 secs]
    Mon Mar 03 22:44:25 2014
    86.218: [GC 86.218: [ParNew: 251085K->87296K(261888K), 0.0361458 secs] 595753K->432181K(2009856K), 0.0362031 secs]
    Mon Mar 03 22:44:26 2014
    87.504: [GC 87.504: [ParNew: 261888K->87030K(261888K), 0.0583024 secs] 606773K->443813K(2009856K), 0.0583593 secs]
    Mon Mar 03 22:44:27 2014
    88.826: [GC 88.826: [ParNew: 261622K->84422K(261888K), 0.0710602 secs] 618405K->457615K(2009856K), 0.0711168 secs]
    Mon Mar 03 22:44:29 2014
    90.118: [GC 90.118: [ParNew: 259014K->79777K(261888K), 0.0874272 secs] 632207K->474086K(2009856K), 0.0874839 secs]
    Mon Mar 03 22:44:30 2014
    91.496: [GC 91.497: [ParNew: 254369K->79760K(261888K), 0.1014280 secs] 648678K->484830K(2009856K), 0.1014868 secs]
    Mon Mar 03 22:44:31 2014
    92.796: [GC 92.797: [ParNew: 254352K->83078K(261888K), 0.1167034 secs] 659422K->497452K(2009856K), 0.1167853 secs]
    Mon Mar 03 22:44:33 2014
    93.983: [GC 93.983: [ParNew: 257670K->87296K(261888K), 0.1289330 secs] 672044K->510820K(2009856K), 0.1289913 secs]
    94.946: [GC 94.946: [ParNew
    Mon Mar 03 22:44:34 2014
    : 261888K->75274K(261888K), 0.0744265 secs] 685412K->509976K(2009856K), 0.0745051 secs]
    Mon Mar 03 22:44:38 2014
    99.098: [GC 99.098: [ParNew: 249866K->32657K(261888K), 0.0148521 secs] 684568K->467359K(2009856K), 0.0149122 secs]
    Mon Mar 03 22:44:40 2014
    101.708: [GC 101.708: [ParNew: 207249K->37328K(261888K), 0.0171581 secs] 641951K->472030K(2009856K), 0.0172204 secs]
    Mon Mar 03 22:44:43 2014
    104.619: [GC 104.619: [ParNew: 211920K->49340K(261888K), 0.0193977 secs] 646622K->484042K(2009856K), 0.0194631 secs]
    Mon Mar 03 22:44:46 2014
    107.905: [GC 107.906: [ParNew: 223932K->60399K(261888K), 0.0231337 secs] 658634K->495102K(2009856K), 0.0232004 secs]
    Mon Mar 03 22:44:49 2014
    110.470: [GC 110.470: [ParNew: 234991K->70510K(261888K), 0.0244632 secs] 669694K->505212K(2009856K), 0.0245277 secs]
    Mon Mar 03 22:44:52 2014
    113.170: [GC 113.170: [ParNew: 245102K->82782K(261888K), 0.0270283 secs] 679804K->517484K(2009856K), 0.0270959 secs]
    Mon Mar 03 22:44:53 2014
    114.187: [GC 114.187: [ParNew: 257374K->74496K(261888K), 0.0261138 secs] 692076K->518191K(2009856K), 0.0261717 secs]
    Mon Mar 03 22:44:54 2014
    115.181: [GC 115.181: [ParNew: 249088K->77048K(261888K), 0.0228612 secs] 692783K->520742K(2009856K), 0.0229204 secs]
    Mon Mar 03 22:44:56 2014
    117.024: [GC 117.024: [ParNew: 251640K->87296K(261888K), 0.0300847 secs] 695334K->531036K(2009856K), 0.0301691 secs]
    Mon Mar 03 22:44:57 2014
    118.131: [GC 118.131: [ParNew: 261888K->76441K(261888K), 0.0349722 secs] 705628K->535890K(2009856K), 0.0350340 secs]
    Mon Mar 03 22:44:58 2014
    119.330: [GC 119.330: [ParNew: 251033K->78417K(261888K), 0.0267709 secs] 710482K->537866K(2009856K), 0.0268305 secs]
    Mon Mar 03 22:44:59 2014
    120.890: [GC 120.890: [ParNew: 253009K->84158K(261888K), 0.0318317 secs] 712458K->543607K(2009856K), 0.0319174 secs]
    Mon Mar 03 22:45:01 2014
    122.097: [GC 122.097: [ParNew: 258750K->77394K(261888K), 0.0323164 secs] 718199K->543929K(2009856K), 0.0323814 secs]
    Mon Mar 03 22:45:02 2014
    123.408: [GC 123.408: [ParNew: 251748K->87011K(261888K), 0.0279755 secs] 718283K->553546K(2009856K), 0.0280372 secs]
    Mon Mar 03 22:45:03 2014
    124.401: [GC 124.401: [ParNew: 261603K->77902K(261888K), 0.0331150 secs] 728138K->558533K(2009856K), 0.0331762 secs]
    Mon Mar 03 22:45:04 2014
    125.601: [GC 125.601: [ParNew: 252494K->84458K(261888K), 0.0280007 secs] 733125K->565088K(2009856K), 0.0280659 secs]
    Mon Mar 03 22:45:06 2014
    127.465: [GC 127.465: [ParNew: 258834K->79900K(261888K), 0.0321256 secs] 739464K->573128K(2009856K), 0.0321907 secs]
    Mon Mar 03 22:45:09 2014
    130.313: [GC 130.313: [ParNew: 254492K->80587K(261888K), 0.0304571 secs] 747720K->583427K(2009856K), 0.0305215 secs]
    Mon Mar 03 22:45:12 2014
    133.139: [GC 133.140: [ParNew: 255179K->77217K(261888K), 0.0314156 secs] 758019K->592630K(2009856K), 0.0314841 secs]
    Mon Mar 03 22:45:15 2014
    136.676: [GC 136.676: [ParNew: 251809K->87296K(261888K), 0.0337119 secs] 767222K->607687K(2009856K), 0.0337778 secs]
    Mon Mar 03 22:45:16 2014
    137.941: [GC 137.941: [ParNew
    Mon Mar 03 22:45:17 2014
    : 261888K->87296K(261888K), 0.0393619 secs] 782279K->623561K(2009856K), 0.0394307 secs]
    Mon Mar 03 22:45:19 2014
    140.884: [GC 140.884: [ParNew: 261888K->87296K(261888K), 0.0381342 secs] 798153K->637513K(2009856K), 0.0382105 secs]
    Mon Mar 03 22:45:22 2014
    143.319: [GC 143.319: [ParNew: 261888K->80333K(261888K), 0.0333925 secs] 812105K->643504K(2009856K), 0.0334620 secs]
    Mon Mar 03 22:45:25 2014
    146.634: [GC 146.634: [ParNew: 254925K->84212K(261888K), 0.0351571 secs] 818096K->652210K(2009856K), 0.0352219 secs]
    Mon Mar 03 22:45:28 2014
    149.382: [GC 149.382: [ParNew: 258804K->83078K(261888K), 0.0335765 secs] 826802K->660933K(2009856K), 0.0336496 secs]
    Mon Mar 03 22:45:31 2014
    152.664: [GC 152.664: [ParNew: 257670K->84779K(261888K), 0.0344340 secs] 835525K->673425K(2009856K), 0.0345008 secs]
    Mon Mar 03 22:45:33 2014
    154.886: [GC 154.887: [ParNew: 259371K->87296K(261888K), 0.0399261 secs] 848017K->689133K(2009856K), 0.0399936 secs]
    Mon Mar 03 22:45:36 2014
    157.865: [GC 157.865: [ParNew: 261888K->87296K(261888K), 0.0392448 secs] 863725K->706552K(2009856K), 0.0393233 secs]
    Mon Mar 03 22:45:39 2014
    160.825: [GC 160.825: [ParNew: 261888K->84841K(261888K), 0.0354600 secs] 881144K->715963K(2009856K), 0.0355352 secs]
    Mon Mar 03 22:45:42 2014
    163.840: [GC 163.840: [ParNew: 259433K->84787K(261888K), 0.0342477 secs] 890555K->727641K(2009856K), 0.0343231 secs]
    Mon Mar 03 22:45:45 2014
    166.609: [GC 166.609: [ParNew: 259379K->79877K(261888K), 0.0341681 secs] 902233K->735903K(2009856K), 0.0342411 secs]
    Mon Mar 03 22:45:47 2014
    168.788: [GC 168.789: [ParNew: 254469K->75246K(261888K), 0.0311028 secs] 910495K->738638K(2009856K), 0.0311744 secs]
    [Thr 5660] Mon Mar 03 22:45:50 2014
    [Thr 5660] JLaunchISetState: change state from [Starting applications (10)] to [Running (3)]
    171.608: [GC 171.608: [ParNew: 249838K->78203K(261888K), 0.0279135 secs] 913230K->741595K(2009856K), 0.0279916 secs]
    Mon Mar 03 22:45:53 2014
    174.794: [GC 174.794: [ParNew: 252795K->79672K(261888K), 0.0268707 secs] 916187K->743064K(2009856K), 0.0269482 secs]
    Mon Mar 03 22:46:02 2014
    183.469: [GC 183.469: [ParNew: 254264K->76071K(261888K), 0.0341964 secs] 917656K->749731K(2009856K), 0.0342784 secs]
    Mon Mar 03 22:46:03 2014
    184.210: [GC 184.210: [ParNew: 250663K->79101K(261888K), 0.0255854 secs] 924323K->752761K(2009856K), 0.0256439 secs]
    Mon Mar 03 22:46:05 2014
    186.549: [GC 186.549: [ParNew: 253693K->87296K(261888K), 0.0378877 secs] 927353K->768857K(2009856K), 0.0379488 secs]
    Mon Mar 03 22:46:07 2014
    188.499: [GC 188.499: [ParNew: 261888K->87296K(261888K), 0.0458557 secs] 943449K->791119K(2009856K), 0.0459175 secs]
    Mon Mar 03 22:46:09 2014
    190.290: [GC 190.290: [ParNew: 261888K->87295K(261888K), 0.0392129 secs] 965711K->807111K(2009856K), 0.0392755 secs]
    Mon Mar 03 22:46:11 2014
    192.897: [GC 192.897: [ParNew: 261887K->87296K(261888K), 0.0389259 secs] 981703K->821533K(2009856K), 0.0389870 secs]
    Mon Mar 03 22:46:14 2014
    195.403: [GC 195.403: [ParNew: 261888K->87296K(261888K), 0.0379113 secs] 996125K->835895K(2009856K), 0.0379711 secs]
    Mon Mar 03 22:46:16 2014
    197.358: [GC 197.358: [ParNew: 261888K->87296K(261888K), 0.0516585 secs] 1010487K->849132K(2009856K), 0.0517239 secs]
    Mon Mar 03 22:46:18 2014
    199.363: [GC 199.363: [ParNew: 261888K->87296K(261888K), 0.0634538 secs] 1023724K->873919K(2009856K), 0.0635150 secs]
    Mon Mar 03 22:46:19 2014
    200.331: [GC 200.331: [ParNew: 261888K->83774K(261888K), 0.0602906 secs] 1048511K->886275K(2009856K), 0.0603550 secs]
    Mon Mar 03 22:46:20 2014
    201.328: [GC 201.328: [ParNew: 258366K->82230K(261888K), 0.0729109 secs] 1060867K->901163K(2009856K), 0.0729752 secs]
    Mon Mar 03 22:46:21 2014
    202.788: [GC 202.788: [ParNew: 256822K->83481K(261888K), 0.0810150 secs] 1075755K->915590K(2009856K), 0.0810736 secs]
    Mon Mar 03 22:46:22 2014
    203.106: [GC 203.106: [ParNew: 258073K->74195K(261888K), 0.0564234 secs] 1090182K->916479K(2009856K), 0.0564795 secs]
    203.435: [GC 203.435: [ParNew: 248787K->75675K(261888K), 0.0554472 secs] 1091071K->917959K(2009856K), 0.0555058 secs]
    203.600: [GC 203.600: [ParNew: 250267K->36085K(261888K), 0.0160241 secs] 1092551K->878369K(2009856K), 0.0160788 secs]
    203.720: [GC 203.720: [ParNew: 210677K->36107K(261888K), 0.0162984 secs] 1052961K->878391K(2009856K), 0.0163540 secs]
    203.844: [GC 203.844: [ParNew: 210699K->36097K(261888K), 0.0159013 secs] 1052983K->878380K(2009856K), 0.0159600 secs]
    203.965: [GC 203.965: [ParNew
    Mon Mar 03 22:46:23 2014
    : 210689K->36085K(261888K), 0.0163110 secs] 1052972K->878369K(2009856K), 0.0163691 secs]
    Mon Mar 03 22:46:25 2014
    206.502: [GC 206.502: [ParNew: 210677K->64760K(261888K), 0.0229767 secs] 1052961K->907044K(2009856K), 0.0230372 secs]
    Mon Mar 03 22:46:26 2014
    207.513: [GC 207.513: [ParNew: 239352K->78350K(261888K), 0.0503470 secs] 1081636K->920634K(2009856K), 0.0504073 secs]
    Mon Mar 03 22:46:27 2014
    208.496: [GC 208.496: [ParNew: 252942K->87295K(261888K), 0.0728795 secs] 1095226K->935510K(2009856K), 0.0729422 secs]
    Mon Mar 03 22:46:30 2014
    211.165: [GC 211.166: [ParNew: 261711K->87295K(261888K), 0.0708860 secs] 1109925K->954676K(2009856K), 0.0709488 secs]
    Mon Mar 03 22:46:33 2014
    214.628: [GC 214.628: [ParNew: 261887K->87296K(261888K), 0.0442698 secs] 1129268K->977888K(2009856K), 0.0443319 secs]
    Mon Mar 03 22:46:34 2014
    215.612: [GC 215.612: [ParNew: 261888K->77438K(261888K), 0.0274442 secs] 1152480K->981116K(2009856K), 0.0275224 secs]
    Mon Mar 03 22:46:36 2014
    217.679: [GC 217.679: [ParNew: 252030K->75545K(261888K), 0.0234225 secs] 1155708K->979223K(2009856K), 0.0234854 secs]
    Mon Mar 03 22:46:40 2014
    221.034: [GC 221.034: [ParNew: 250137K->81232K(261888K), 0.0260958 secs] 1153815K->984910K(2009856K), 0.0261583 secs]
    Mon Mar 03 22:46:42 2014
    223.661: [GC 223.661: [ParNew: 255824K->87296K(261888K), 0.0410085 secs] 1159502K->1008603K(2009856K), 0.0410722 secs]
    Mon Mar 03 22:46:46 2014
    227.047: [GC 227.047: [ParNew: 261888K->82837K(261888K), 0.0281887 secs] 1183195K->1021994K(2009856K), 0.0282652 secs]
    Mon Mar 03 22:46:48 2014
    229.539: [GC 229.539: [ParNew: 257429K->83793K(261888K), 0.0282365 secs] 1196586K->1033027K(2009856K), 0.0282972 secs]
    Mon Mar 03 22:46:50 2014
    231.783: [GC 231.783: [ParNew: 258385K->81425K(261888K), 0.0266679 secs] 1207619K->1039611K(2009856K), 0.0267300 secs]
    Mon Mar 03 22:47:43 2014
    284.455: [GC 284.455: [ParNew: 256017K->80339K(261888K), 0.0274549 secs] 1214203K->1047498K(2009856K), 0.0275369 secs]
    Mon Mar 03 22:47:56 2014
    297.036: [GC 297.036: [ParNew: 254931K->66836K(261888K), 0.0245144 secs] 1222090K->1039297K(2009856K), 0.0245941 secs]
    Mon Mar 03 22:48:01 2014
    302.237: [GC 302.237: [ParNew: 241428K->69525K(261888K), 0.0214356 secs] 1213889K->1041987K(2009856K), 0.0214987 secs]
    Mon Mar 03 22:48:02 2014
    303.754: [GC 303.754: [ParNew: 244117K->82602K(261888K), 0.0223438 secs] 1216579K->1055064K(2009856K), 0.0224024 secs]
    Mon Mar 03 22:48:04 2014
    305.920: [GC 305.920: [ParNew: 257194K->87296K(261888K), 0.0358709 secs] 1229656K->1071116K(2009856K), 0.0359321 secs]
    Mon Mar 03 22:48:06 2014
    307.513: [GC 307.513: [ParNew: 261888K->84120K(261888K), 0.0344553 secs] 1245708K->1094859K(2009856K), 0.0345146 secs]
    Mon Mar 03 22:48:08 2014
    309.602: [GC 309.602: [ParNew: 258712K->81293K(261888K), 0.0298022 secs] 1269451K->1103476K(2009856K), 0.0298678 secs]
    Mon Mar 03 22:48:11 2014
    312.668: [GC 312.668: [ParNew: 255885K->87296K(261888K), 0.0332212 secs] 1278068K->1115780K(2009856K), 0.0332824 secs]
    Mon Mar 03 22:48:13 2014
    314.227: [GC 314.227: [ParNew: 261888K->87296K(261888K), 0.0510319 secs] 1290372K->1130488K(2009856K), 0.0510931 secs]
    Mon Mar 03 22:48:14 2014
    315.567: [GC 315.567: [ParNew: 261888K->87296K(261888K), 0.0418971 secs] 1305080K->1142559K(2009856K), 0.0419727 secs]
    Mon Mar 03 22:48:15 2014
    316.234: [GC 316.234: [ParNew: 260411K->87296K(261888K), 0.0326381 secs] 1315674K->1155286K(2009856K), 0.0327002 secs]
    Mon Mar 03 22:48:16 2014
    317.947: [GC 317.947: [ParNew
    Mon Mar 03 22:48:17 2014
    : 261888K->84783K(261888K), 0.0544771 secs] 1329878K->1165575K(2009856K), 0.0545397 secs]
    318.887: [GC 318.887: [ParNew: 259375K->75728K(261888K), 0.0788096 secs] 1340167K->1178222K(2009856K), 0.0788685 secs]
    Mon Mar 03 22:48:18 2014
    319.902: [GC 319.902: [ParNew: 250320K->83339K(261888K), 0.0633405 secs] 1352814K->1185833K(2009856K), 0.0633997 secs]
    Mon Mar 03 22:48:20 2014
    321.048: [GC 321.048: [ParNew: 257931K->87295K(261888K), 0.1008284 secs] 1360425K->1201644K(2009856K), 0.1008877 secs]
    Mon Mar 03 22:48:21 2014
    321.987: [GC 321.987: [ParNew: 261887K->80207K(261888K), 0.0350539 secs] 1376236K->1206744K(2009856K), 0.0351138 secs]
    322.145: [GC 322.145: [ParNew: 254799K->64331K(261888K), 0.0229696 secs] 1381336K->1199642K(2009856K), 0.0230283 secs]
    322.273: [GC 322.273: [ParNew: 238923K->64330K(261888K), 0.0218617 secs] 1374234K->1199641K(2009856K), 0.0219303 secs]
    322.408: [GC 322.408: [ParNew: 238922K->64332K(261888K), 0.0208870 secs] 1374233K->1199643K(2009856K), 0.0209427 secs]
    322.539: [GC 322.539: [ParNew: 238924K->64340K(261888K), 0.0215114 secs] 1374235K->1199651K(2009856K), 0.0215721 secs]
    322.665: [GC 322.665: [ParNew: 238932K->64337K(261888K), 0.0210712 secs] 1374243K->1199648K(2009856K), 0.0211268 secs]
    Mon Mar 03 22:48:23 2014
    324.806: [GC 324.806: [ParNew: 238929K->87296K(261888K), 0.0287837 secs] 1374240K->1224592K(2009856K), 0.0288449 secs]
    Mon Mar 03 22:48:27 2014
    328.122: [GC 328.122: [ParNew: 261888K->87295K(261888K), 0.0567994 secs] 1399184K->1246211K(2009856K), 0.0568627 secs]
    Mon Mar 03 22:48:30 2014
    331.789: [GC 331.789: [ParNew: 261887K->87296K(261888K), 0.0404336 secs] 1420803K->1270000K(2009856K), 0.0404992 secs]
    Mon Mar 03 22:48:32 2014
    333.049: [GC 333.049: [ParNew: 261888K->77729K(261888K), 0.0267617 secs] 1444592K->1270529K(2009856K), 0.0268237 secs]
    Mon Mar 03 22:48:34 2014
    335.616: [GC 335.616: [ParNew: 252321K->87296K(261888K), 0.0290841 secs] 1445121K->1280106K(2009856K), 0.0291611 secs]
    Mon Mar 03 22:48:38 2014
    339.319: [GC 339.319: [ParNew: 261888K->77206K(261888K), 0.0310348 secs] 1454698K->1285517K(2009856K), 0.0311971 secs]
    Mon Mar 03 22:48:42 2014
    343.661: [GC 343.661: [ParNew: 251798K->87296K(261888K), 0.0376777 secs] 1460109K->1308988K(2009856K), 0.0377410 secs]
    Mon Mar 03 22:48:46 2014
    347.334: [GC 347.334: [ParNew: 261888K->78978K(261888K), 0.0302287 secs] 1483580K->1322819K(2009856K), 0.0302929 secs]
    Mon Mar 03 22:48:49 2014
    350.215: [GC 350.215: [ParNew: 253570K->87295K(261888K), 0.0272437 secs] 1497411K->1331778K(2009856K), 0.0273054 secs]
    Mon Mar 03 22:48:51 2014
    352.388: [GC 352.388: [ParNew: 261887K->85223K(261888K), 0.0300753 secs] 1506370K->1341544K(2009856K), 0.0301387 secs]
    Mon Mar 03 22:48:53 2014
    354.622: [GC 354.622: [ParNew: 259815K->84125K(261888K), 0.0284524 secs] 1516136K->1349095K(2009856K), 0.0285171 secs]
    [Thr 6812] Mon Mar 03 22:50:56 2014
    [Thr 6812] JHVM_RegisterNatives: com.sap.bc.proj.jstartup.sadm.ShmCache
    Mon Mar 03 22:53:33 2014
    634.463: [GC 634.463: [ParNew: 258717K->73646K(261888K), 0.0307287 secs] 1523687K->1353067K(2009856K), 0.0308141 secs]
    [Thr 7468] Mon Mar 03 22:53:57 2014
    [Thr 7468] JHVM_RegisterNatives: com.sap.i18n.cp.ConverterJNI
    [Thr 7468] JHVM_RegisterNatives: 16 of 18 methods in com.sap.i18n.cp.ConverterJNI registered.
    Mon Mar 03 22:54:03 2014
    664.297: [GC 664.297: [ParNew: 248238K->85327K(261888K), 0.0286712 secs] 1527659K->1364747K(2009856K), 0.0287607 secs]
    Mon Mar 03 22:56:27 2014
    808.727: [GC 808.728: [ParNew: 259919K->60642K(261888K), 0.0304199 secs] 1539339K->1368716K(2009856K), 0.0305016 secs]
    Mon Mar 03 22:57:03 2014
    844.313: [GC 844.313: [ParNew: 235234K->69822K(261888K), 0.0299536 secs] 1543308K->1377897K(2009856K), 0.0300265 secs]
    Mon Mar 03 22:57:24 2014
    865.072: [GC 865.072: [ParNew: 244414K->71614K(261888K), 0.0296399 secs] 1552489K->1379689K(2009856K), 0.0297222 secs]
    Mon Mar 03 22:59:06 2014
    967.227: [GC 967.227: [ParNew: 246206K->78343K(261888K), 0.0276259 secs] 1554281K->1386418K(2009856K), 0.0277066 secs]
    Mon Mar 03 22:59:08 2014
    969.688: [GC 969.688: [ParNew: 252935K->82379K(261888K), 0.0305948 secs] 1561010K->1390454K(2009856K), 0.0306570 secs]
    Mon Mar 03 22:59:09 2014
    970.454: [GC 970.454: [ParNew: 256971K->70218K(261888K), 0.0274513 secs] 1565046K->1390982K(2009856K), 0.0275148 secs]
    Mon Mar 03 23:00:00 2014
    1021.091: [GC 1021.091: [ParNew: 244810K->68632K(261888K), 0.0261762 secs] 1565574K->1389396K(2009856K), 0.0262607 secs]
    Mon Mar 03 23:00:07 2014
    1028.504: [GC 1028.504: [ParNew: 243224K->74575K(261888K), 0.0275644 secs] 1563988K->1395339K(2009856K), 0.0276328 secs]
    Mon Mar 03 23:00:08 2014
    1029.272: [GC 1029.272: [ParNew: 249167K->74992K(261888K), 0.0261950 secs] 1569931K->1395757K(2009856K), 0.0262624 secs]
    Mon Mar 03 23:03:56 2014
    1257.933: [GC 1257.933: [ParNew: 249584K->69029K(261888K), 0.0288173 secs] 1570349K->1389793K(2009856K), 0.0289014 secs]
    Mon Mar 03 23:13:08 2014
    1809.469: [GC 1809.469: [ParNew: 243621K->69287K(261888K), 0.0291224 secs] 1564385K->1390051K(2009856K), 0.0292053 secs]
    [Thr 3192] Mon Mar 03 23:13:14 2014
    [Thr 3192] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 3192] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    [Thr 5952] Mon Mar 03 23:13:18 2014
    [Thr 5952] JLaunchRequestFunc: receive command:17, argument:0 from pid:7060
    [Thr 5952] JLaunchIShutdownInvoke: set shutdown interval (stop:1393888398/end:1393888518/TO:120)
    [Thr 5952] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 5952] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    Mon Mar 03 23:13:20 2014
    1821.372: [GC 1821.372: [ParNew: 243879K->63494K(261888K), 0.0293364 secs] 1564643K->1384258K(2009856K), 0.0294187 secs]
    Mon Mar 03 23:13:26 2014
    1827.415: [GC 1827.416: [ParNew: 238086K->52216K(261888K), 0.0312805 secs] 1558850K->1372980K(2009856K), 0.0313517 secs]
    [Thr 7956] Mon Mar 03 23:13:28 2014
    [Thr 7956] CCMS: closeMonitoringSegment(): inside static JMON Lib: nothing to do.
    [Thr 3192] Mon Mar 03 23:13:29 2014
    [Thr 3192] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 7304] Mon Mar 03 23:13:30 2014
    [Thr 7304] JLaunchIExitJava: exit hook is called (rc = -11111)
    [Thr 7304] **********************************************************************
    [Thr 7304] *** ERROR => The Java VM terminated with a non-zero exit code.
    [Thr 7304] *** Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    [Thr 7304] *** for additional information and trouble shooting.
    [Thr 7304] **********************************************************************
    [Thr 7304] JLaunchCloseProgram: good bye (exitcode = -11111)
    Could you please help me out from this issue. Its very urgent.
    Thanks in advance,
    Bhaskar

  • How to make automatic backups of NW Portal systems?

    Hi All,
    We have SAP CRM, ECC and NW Portal using MaxDB databases.
    For DB Backups and monitoring, we are using Database Studio.
    But in this DatabaseStudio, we have no calendar and no automatic backups is possible. In SAP ECC and CRM, we can access the tcode DB13 which give us acces to the DBA Planning Calendar.
    Connecting on ECC or CRM backends, we can then plan automatic backups.
    But for Portal I dont' find how to use a calendar for automatic backups.
    I saw that in DB13, you can select the system you want to backup. Would it be possible to add the Portal and to manage all systems, including portal, in on single backend point? If yes, how can I add portal system / db to this DB13 menu?
    If not, do you know if there is any other way to have automatic backups of NW Portal? Or any external tool we can use for doing this?
    Thank you in advance for your help,
    Xavier Monnet.

    > But for Portal I dont' find how to use a calendar for automatic backups.
    >
    > I saw that in DB13, you can select the system you want to backup. Would it be possible to add the Portal and to manage all systems, including portal, in on single backend point? If yes, how can I add portal system / db to this DB13 menu?
    You can put any database in DBACOCKPIT and schedule centrally using DB13C.
    > If not, do you know if there is any other way to have automatic backups of NW Portal? Or any external tool we can use for doing this?
    For bigger production environments I'd suggest getting an external backup too and schedule everything centrally.
    Be aware that especially in a Java environment (such as a portal) it's not enough to just backup the database, you have to backup the filesystem content at the same time to be able to restore your system in case of a failure. If you have just the database backup this won't help.
    Markus

  • Can't access Portal Server

    Hi,
    After installation of JSE(Windows Version),
    I can access the identity admin console with url
    http://host:port/amconsole
    But I can't use the url
    http://host:port/portal or
    http://host:port/portal/dt
    to access Portal Server Desktop, the browser
    receive an 500 Internal Error Message.
    The summary report after installation is
    Installation Summary Report
    Install Summary
    Sun Java System Message Queue 3.0.1 Service Pack 2 : Installed, Configured
    Sun Java System Application Server 7 Update 1 : Installed, Configured
    Sun Java Studio Enterprise 6 2004Q1 : Installed, Configured
    Sun Java System Web Server 6.1 Service Pack 1 : Installed, Configured
    Sun Java System Directory Server 5.2 : Installed, Configured
    Sun Java System Identity Server 6.1 : Installed, Configured
    Sun Java System Portal Server 6.2 : Installed, Configured
    PolicyAgent: Installed, Configured
    It seems nothing wrong, and how can I solve
    this problem?
    Many thanks,

    So, you got Java SE installed. Great. (I've been following your other thread re: installing IS and PS properly).It's not exactly right. I try to use Windows 2000 to install JES and with the same DNS configuration.
    It works. But I still can't install IS/PS correctly in the original machine(Win XP).
    Check the troubleshooting info in the Java SE Install Guide, I believethis error is covered in there. Be sure you use a new instance of your browser to access the PS desktop. And, be sure to check the supported browser list in the Release Notes.
    I go through the overall Install Guide, it's really that I can't find and answer to solve my problem :'(
    Regards,

Maybe you are looking for