WCM activation

Hi all
Can anyone tell me how to activate work clearance management in customization. i am unable to get any features of WCM in customization
regards
ravikumar

Hi,
See [here|Re: Work Clearance Management (WCM) not available on ECC 6.0 installed version] for the previously answered question.
Rajesh

Similar Messages

  • WCM Activation Issue

    Hi All,
    I am configuring WCM in one of the sandbox environments. I have configured the below
    1. Activated WCM at planning plant level with Valuation.
    2. Activated the enhanced model for the planning plant.
    3. Created the approvals and assigned them to the different permit categories
    4.Assigned the approvals to work approval, applications, and work clearance documents.
    5. Activated WCM for the Maintenance Order with WA / 1
    I created an order and assigned the approval, then the valuation button became active. Completed the valuation. The current system status of the order is WCM  VAL  CRTD MANC NTUP. However I am not getting the work approval button active on the order screen.
    can you please let me know what is that I have missed out?
    attached is the screen shot of configuration I have done.
    Regards,
    Srijith

    Issue has been resolved.
    The below customization resolved the issue
    ..Work Clearance Management
    ……Master Data
    ……….Architecture
    ……………Do
    Not Display Dialog Box for Assignments
    The indicator “Do not display” of the line “Planning plant / (OR, ) / (WW, )” should be inactive to make available the button "Work Approval" after the order has been valuated.
    Thanks for your efforts,
    Regards,
    Srijith

  • Input WCM content to Activity Stream Taskflow

    Hi I am trying to input the data coming from WCM to Activity Stream task flow. Plan is read the data from WCM using java API and input it to the activity stream task flow. Can some one tell me how can we access this taskflow using Java API. I went through the API ref but couldn't fig out how to use it. 
    Thank in advance

    Hi.
    You can use WebCenter API. In case of version 11.1.1.8:http://docs.oracle.com/cd/E29542_01/apirefs.1111/e15995/oracle/webcenter/activitystreaming/package-summary.html
    Take a look in the classes ActivityStreamingService and ActivityStreamingServiceFactory
    Basically you have to use ActivityStreamingService for posting new updates. How?.
    To get the ActivityStreamService:
    ActivityStreamingService service = ActivityStreamingServiceFactory.getInstance().getActivityStreamingService();
    Fill all parameters requited for method createActivityElement
    applicationID - application ID of the activity:
    WCApplicationFactory fact = FactoryFinder.getFactory(WCApplicationFactory.class.getCanonicalName());
    WCApplication application = fact.getWCApplication();
    String applicationID = application.getApplicationName();
    scope - the Scope of the activity
    ServiceContext.getContext().getScope()
    serviceID - the service ID of the activity Depending of the content there are different serviceId:    
    wiki = oracle.webcenter.wiki    
    blog = oracle.webcenter.blog    
    document = oracle.webcenter.doclib    
    webContent = oracle.webcenter.content
    You can use UCMHelper.getServiceID passing the resourceType as argument to calculate it or when retrieving the node with Content Presenter, using #{node.propertyMap['webcenter:serviceid'].value.stringValue} will retrieve corresponding serviceID directly.
    activityType - type of the activity Take a look into the API to fill it
    actors - list of actors involved in the activity (there must be at least one actor in the activity) Take a look into the API to fill it
    objects - list of objects involved in the activity (optional) Take a look into the API to fill it
    permission - the permission of the activity Take a look into the API to fill it
    activityTime - time when the activity happens Take a look into the API to fill it
    Sample taken from activity libraries. Remember replace all the sample variables with how to get ApplicationID, Current Scope, etc... that I share to you
    ActivityStreamingService service = ActivityStreamingServiceFactory.getInstance().getActivityStreamingService();
          ActivityActor actor0 = service.createActor(this.actor0DisplayName.toLowerCase());
          ActivityActor actor1 = service.createActor(this.actor1DisplayName.toLowerCase());
          List actors = new ArrayList();
          if ((!this.actor0DisplayName.equals("")) || (!this.actor0DetailURL.equals("")))
            actors.add(actor0);
          if ((!this.actor1DisplayName.equals("")) || (!this.actor1DetailURL.equals("")))
            actors.add(actor1);
          ActivityObjectType objectType = ((JpaActivityStreamingService)service).createObjectType("message");
          ActivityObject object0 = service.createObject("object0", objectType, this.object0DisplayName);
          ActivityObject object1 = service.createObject("object1", objectType, this.object1DisplayName);
          List objects = new ArrayList();
          if ((!this.object0DisplayName.equals("")) || (!this.object0DetailURL.equals("")))
            objects.add(object0);
          if ((!this.object1DisplayName.equals("")) || (!this.object1DetailURL.equals("")))
            objects.add(object1);
          ActivityType activityType = ((JpaActivityStreamingService)service).createActivityType("test");
          activityType.setMessage(this.message);
          ActivityElement activity = service.createActivityElement("customapp", new Scope("test"), "oracle.webcenter.activitystreaming.test", activityType, actors, objects, ActivityPermission.SHARED, new Date());
          service.publish(activity);
        catch (ActivityException e)
          WCServiceViewUtils.getInstance().logAndDisplayError(e);
    I hope it helps

  • Activating WCM for control key WCM (operation level)

    Hi Guys,
    I want to activate WCM in the PM order when i enter WCM control key in operations.
    I do NOT want to activate it using "Activate Work Clearance Management for Maintenance Orders".
    I have done all the config but maybe i missed something as the work approval icon is not appearing for WCM key in order.
    Can someone think of what i may have missed?

    I guess it wont solve my problem as the WCM is working at operation level in another system without it
    any more suggestions?

  • How do you activate pages in WCM en masse?

    How can I activate the whole tree in WCM?
    There must be a way to simply activate all web pages [nodes] that require activation with one click of a button.
    I cannot understand how to do this. Please help.
    Thanks in advance,
    David

    please refer - http://dev.day.com/docs/en/cq/current/wcm/page_publish/tree_activate.html

  • Looking for way to count a specific document hits(Not with Activity Report)

    Hello,
    I have a certain Word document that I want to count how many users opened it. I am aware of the Portal Activity Report but this report tracks only iViews/pages ect. and my document is inside a KM iView which contains many other documents and I want to count just that specific Word document.
    Is there a KM property that can be created or a service that can be applied in order to count this document's hits by users?
    Message was edited by: Roy Cohen

    I have created a repository service which count document hits using a custom property defined.
    We are using NW04SP12.
    This is our code:
    ========================================
    package com.hesa;
    import java.util.Collection;
    import java.util.Iterator;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.crt.component.IReconfigurable;
    import com.sapportals.wcm.crt.component.StartupException;
    import com.sapportals.wcm.crt.configuration.ConfigurationException;
    import com.sapportals.wcm.crt.configuration.IConfiguration;
    import com.sapportals.wcm.repository.IProperty;
    import com.sapportals.wcm.repository.IResource;
    import com.sapportals.wcm.repository.Property;
    import com.sapportals.wcm.repository.PropertyName;
    import com.sapportals.wcm.repository.ResourceException;
    import com.sapportals.wcm.repository.manager.IRepositoryManager;
    import com.sapportals.wcm.repository.manager.IResourceEvent;
    import com.sapportals.wcm.repository.manager.IResourceEventReceiver;
    import com.sapportals.wcm.repository.manager.ResourceEvent;
    import com.sapportals.wcm.repository.service.AbstractRepositoryService;
    import com.sapportals.wcm.repository.service.ServiceNotAvailableException;
    import com.sapportals.wcm.util.events.IEvent;
    public class SampleService extends AbstractRepositoryService implements IResourceEventReceiver, IReconfigurable {
      private static final String TYPE = "com.hesa.kmtest.SampleService";
      private Collection repositoryManagers;
      public SampleService() {
         super();
      public String getServiceType() {
         return SampleService.TYPE;
      protected void startUpImpl(Collection repositoryManagers) throws ConfigurationException, StartupException {
         this.repositoryManagers = repositoryManagers;
         Iterator it = repositoryManagers.iterator();
         while (it.hasNext()){
           try {
              addRepositoryAssignment((IRepositoryManager) it.next());
           } catch (ServiceNotAvailableException e) {
              e.printStackTrace();
      protected void shutDownImpl() {
         Iterator it = repositoryManagers.iterator();
         while (it.hasNext()){
           try {
              removeRepositoryAssignment((IRepositoryManager) it.next());
           } catch (WcmException e) {
              e.printStackTrace();
      protected void addRepositoryAssignment(IRepositoryManager mgr) throws ServiceNotAvailableException {
         try {
           mgr.getEventBroker().register(this, ResourceEvent.GET_TEMPLATE);
         } catch (WcmException e) {
           e.printStackTrace();
      protected void removeRepositoryAssignment(IRepositoryManager mgr) throws WcmException {
         mgr.getEventBroker().unregister(this, ResourceEvent.GET_TEMPLATE);
      public void received(IEvent event) {
         IResourceEvent myEvent = (IResourceEvent) event;
         try {
           IResource res = myEvent.getResource();
           PropertyName propertyNameHitCount = new PropertyName("http://sapportals.com/xmlns/cm","hitcount");
           Property propHitCount = new Property(propertyNameHitCount,new Integer(0));
           if (res.getProperty(propertyNameHitCount)!=null) {
                IProperty oldHitCount = res.getProperty(propertyNameHitCount);
                String sOldHitCount = oldHitCount.getValueAsString();
                int iOldHitCount = Integer.parseInt(sOldHitCount);
                iOldHitCount++;
              propHitCount = new Property(propertyNameHitCount,new Integer(iOldHitCount));
              res.setProperty(propHitCount);       
         } catch (ResourceException e) {
           e.printStackTrace();
      public void reconfigure(IConfiguration arg0) throws ConfigurationException {
    ========================================
    Remember, you must activate this service in the correct repository (System administration -> System configuration -> Knowledge Management -> Content Management -> Repository Managers -> CM Repository).
    These changes requires that you restart the server.
    I think this could help you.

  • Server Error at /libs/wcm/core/content/reference.json

    Hi all,
    I am currently faced with an server error.
    When I tried to right click and 'activate' a content, it doesn't do anything.
    As the ajax call have failed.
    Can I know how to resolve it?
    Thanks
    Internal Server Error
    Cannot serve request to /libs/wcm/core/content/reference.json in com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet Exception: java.lang.NullPointerException         at com.day.cq.personalization.impl.TargetedContentManagerImpl.collector(TargetedContentManag erImpl.java:336)         at com.day.cq.personalization.impl.TargetedContentManagerImpl.validateCache(TargetedContentM anagerImpl.java:321)         at com.day.cq.personalization.impl.TargetedContentManagerImpl.getCampaigns(TargetedContentMa nagerImpl.java:253)         at com.day.cq.personalization.impl.CampaignReferenceProvider.findReferences(CampaignReferenc eProvider.java:67)         at com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet.doGet(ActivationRefer enceSearchServlet.java:113)         at org.apache.sling.api.servlets.SlingSafeMethodsServlet.mayService(SlingSafeMethodsServlet. java:268)         at org.apache.sling.api.servlets.SlingSafeMethodsServlet.service(SlingSafeMethodsServlet.jav a:344)         at org.apache.sling.api.servlets.SlingSafeMethodsServlet.service(SlingSafeMethodsServlet.jav a:375)         at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:508)         at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilter Chain.java:45)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)         at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:148)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.wcm.core.impl.WCMComponentFilter.filterRootInclude(WCMComponentFilter.java:333 )         at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:160)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProce ssorImpl.java:254)         at org.apache.sling.engine.impl.filter.RequestSlingFilterChain.render(RequestSlingFilterChai n.java:49)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)         at com.day.cq.wcm.core.impl.warp.TimeWarpFilter.doFilter(TimeWarpFilter.java:106)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter.doFilter(RedirectFilter.java:290)          at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter.doFilter(RequestProgre ssTrackerLogFilter.java:59)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.theme.impl.ThemeResolverFilter.doFilter(ThemeResolverFilter.java:76)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.adobe.granite.optout.impl.OptOutFilter.doFilter(OptOutFilter.java:74)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet.doFilter(FormsHandlingServlet.j ava:220)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.wcm.core.impl.WCMRequestFilter.doFilter(WCMRequestFilter.java:90)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at com.day.cq.wcm.designimporter.CanvasPageDeleteRequestFilter.doFilter(CanvasPageDeleteRequ estFilter.java:87)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.rewriter.impl.RewriterFilter.doFilter(RewriterFilter.java:83)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:127)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.bgservlets.impl.BackgroundServletStarterFilter.doFilter(BackgroundServle tStarterFilter.java:135)         at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)         at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processRequest(SlingRequestProcess orImpl.java:151)         at org.apache.sling.engine.impl.SlingMainServlet.service(SlingMainServlet.java:206)         at org.apache.felix.http.base.internal.handler.ServletHandler.doHandle(ServletHandler.java:9 6)         at org.apache.felix.http.base.internal.handler.ServletHandler.handle(ServletHandler.java:79)          at org.apache.felix.http.base.internal.dispatch.ServletPipeline.handle(ServletPipeline.java: 42)         at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:49)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:127)         at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)          at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)          at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at com.adobe.granite.license.impl.LicenseCheckFilter.doFilter(LicenseCheckFilter.java:179)          at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)          at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)          at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at org.apache.sling.security.impl.ReferrerFilter.doFilter(ReferrerFilter.java:259)         at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)          at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)          at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at org.apache.felix.http.sslfilter.internal.SslFilter.doFilter(SslFilter.java:55)         at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)          at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)          at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at org.apache.sling.engine.impl.log.RequestLoggerFilter.doFilter(RequestLoggerFilter.java:75 )         at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)          at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)          at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)         at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)         at org.apache.felix.http.base.internal.dispatch.FilterPipeline.dispatch(FilterPipeline.java: 48)         at org.apache.felix.http.base.internal.dispatch.Dispatcher.dispatch(Dispatcher.java:39)          at org.apache.felix.http.base.internal.DispatcherServlet.service(DispatcherServlet.java:67)          at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)         at com.day.j2ee.servletengine.ServletRuntimeEnvironment.service(ServletRuntimeEnvironment.ja va:250)         at com.day.j2ee.servletengine.RequestDispatcherImpl.doFilter(RequestDispatcherImpl.java:321)          at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:340)          at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:383)          at com.day.j2ee.servletengine.ServletHandlerImpl.process(ServletHandlerImpl.java:360)          at com.day.j2ee.servletengine.HttpListener$Worker.run(HttpListener.java:644)         at java.lang.Thread.run(Unknown Source) Request Progress:       0 (2013-05-01 17:07:30) TIMER_START{Request Processing}       0 (2013-05-01 17:07:30) COMMENT timer_end format is {,}       0 (2013-05-01 17:07:30) LOG Method=GET, PathInfo=/libs/wcm/core/content/reference.json       0 (2013-05-01 17:07:30) TIMER_START{ResourceResolution}       0 (2013-05-01 17:07:30) TIMER_END{0,ResourceResolution} URI=/libs/wcm/core/content/reference.json resolves to Resource=, type=wcm/core/reference, path=/libs/wcm/core/content/reference, resource=[JcrNodeResource, type=wcm/core/reference, superType=null, path=/libs/wcm/core/content/reference]       0 (2013-05-01 17:07:30) LOG Resource Path Info: SlingRequestPathInfo: path='/libs/wcm/core/content/reference', selectorString='null', extension='json', suffix='null'       0 (2013-05-01 17:07:30) TIMER_START{ServletResolution}       0 (2013-05-01 17:07:30) TIMER_START{resolveServlet(, type=wcm/core/reference, path=/libs/wcm/core/content/reference, resource=[JcrNodeResource, type=wcm/core/reference, superType=null, path=/libs/wcm/core/content/reference])}       0 (2013-05-01 17:07:30) TIMER_END{0,resolveServlet(, type=wcm/core/reference, path=/libs/wcm/core/content/reference, resource=[JcrNodeResource, type=wcm/core/reference, superType=null, path=/libs/wcm/core/content/reference])} Using servlet com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet       0 (2013-05-01 17:07:30) TIMER_END{0,ServletResolution} URI=/libs/wcm/core/content/reference.json handled by Servlet=com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet       0 (2013-05-01 17:07:30) LOG Applying Requestfilters       0 (2013-05-01 17:07:30) LOG Calling filter: org.apache.sling.bgservlets.impl.BackgroundServletStarterFilter       0 (2013-05-01 17:07:30) LOG Calling filter: org.apache.sling.i18n.impl.I18NFilter       0 (2013-05-01 17:07:30) LOG Calling filter: org.apache.sling.rewriter.impl.RewriterFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.designimporter.CanvasPageDeleteRequestFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.core.impl.WCMRequestFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet       0 (2013-05-01 17:07:30) LOG Calling filter: com.adobe.granite.optout.impl.OptOutFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.theme.impl.ThemeResolverFilter       0 (2013-05-01 17:07:30) LOG Calling filter: org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter       0 (2013-05-01 17:07:30) LOG RedirectFilter did not redirect (request extension does not match)       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.core.impl.warp.TimeWarpFilter       0 (2013-05-01 17:07:30) LOG Applying Componentfilters       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.core.impl.WCMComponentFilter       0 (2013-05-01 17:07:30) LOG Calling filter: com.day.cq.wcm.core.impl.WCMDebugFilter       0 (2013-05-01 17:07:30) TIMER_START{com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet#0}       0 (2013-05-01 17:07:30) TIMER_END{0,com.day.cq.wcm.core.impl.reference.ActivationReferenceSearchServlet#0}       0 (2013-05-01 17:07:30) LOG Applying Error filters       0 (2013-05-01 17:07:30) LOG Calling filter: org.apache.sling.rewriter.impl.RewriterFilter       0 (2013-05-01 17:07:30) TIMER_START{handleError:throwable=java.lang.NullPointerException}      16 (2013-05-01 17:07:30) TIMER_END{16,handleError:throwable=java.lang.NullPointerException} Using handler /apps/sling/servlet/errorhandler/default.jsp      31 (2013-05-01 17:07:30) LOG Found processor for post processing ProcessorConfiguration: {contentTypes=[text/html],order=-1, active=true, valid=true, processErrorResponse=true, pipeline=(generator=Config(type=htmlparser, config={}), transformers=(Config(type=linkchecker, config={}), Config(type=mobile, config=org.apache.sling.jcr.resource.JcrPropertyMap@dcca29c), Config(type=mobiledebug, config=org.apache.sling.jcr.resource.JcrPropertyMap@75c7b6d7), Config(type=contentsync, config=org.apache.sling.jcr.resource.JcrPropertyMap@ab519aa), serializer=Config(type=htmlwriter, config={}))}      78 (2013-05-01 17:07:30) TIMER_END{78,Request Processing} Dumping SlingRequestProgressTracker Entries  ApacheSling/2.2 (Day-Servlet-Engine/4.1.42, Java HotSpot(TM) 64-Bit Server VM 1.6.0_29, Windows Server 2008 R2 6.1 amd64)

    After I have decompile and studied the com.day.cq.personalization.impl.TargetedContentManagerImpl Class.
    I have notice that I will need to have the Campaigns folder created under the content tree("/content/campaigns")
    Shouldn't the code handle the null case on line 321 of TargetedContentManagerImpl Class
    collector(this.adminResolver.getResource(this.promotionRoot));
    Thanks

  • Com.sapportals.wcm.WcmException: TREX Name Server

    Hello SAPMAN;
    When try search in Portal show this error,
    Search Failure
    Error during search occurred - com.sapportals.wcm.WcmException: TREX Name Server (including back-up servers) is down or not accessable.  (Errorcode 7217)
    An unexpected severe error occurred during the search call.  If the situation persists, inform your system administrator.
    In Visual Administrator the trex service is ok.
    Regards.

    Trace error,
    [290512] 2010-04-23 12:52:19.643 e TNS          TNSClient.cpp(00599) : sendRequest to spcp1appitr01:30301 failed with NetException. data=[getvalue](S)client_id=spcp1appitr01:0/291980/1920...
    [290512] 2010-04-23 12:52:19.643 e TNS          TNSClient.cpp(00497) : nameserver spcp1appitr01:30301 not responding after 1 retries. giving up.
    [290512] 2010-04-23 12:52:19.643 e TrexNet      EndPoint.cpp(00087) : ERROR: failed to create Endpoint 10.130.14.15:0 reason: invalid port
    [290512] 2010-04-23 12:52:19.643 e AlertServer  TRexAlertMonitor.cpp(00598) : An exception occured while getting configuration from the active master (name) alert server!
    [291500] 2010-04-23 12:53:10.174 e NameServer   TREXNameServer.cpp(00542) : shared memory not initialized after 10 retries (state=Reinit). disabling shared memory
    [291500] 2010-04-23 12:53:11.143 e TrexNet      EndPoint.cpp(00243) : ERROR: failed to open channel 10.130.14.15:30301! reason: connection refused
    [291500] 2010-04-23 12:53:11.143 e TNS          TNSClient.cpp(00599) : sendRequest to spcp1appitr01:30301 failed with NetException. data=[getvalue](S)client_id=spcp1appitr01:0/292784/1920...
    [291500] 2010-04-23 12:53:11.143 e TNS          TNSClient.cpp(00497) : nameserver spcp1appitr01:30301 not responding after 1 retries. giving up.
    [291500] 2010-04-23 12:53:11.143 e TrexNet      EndPoint.cpp(00087) : ERROR: failed to create Endpoint 10.130.14.15:0 reason: invalid port
    [291500] 2010-04-23 12:53:11.143 e AlertServer  TRexAlertMonitor.cpp(00598) : An exception occured while getting configuration from the active master (name) alert server!
    Regards.

  • How to use WCM for a maintenance order ?

    HI friends,
         Can u please tell the steps how i should use WCM in a maintenance order?
    Regards,
    M.Alagesan

    Hi Alagesan,
    To use WCM in Maintenance Orders, you should have activated either a Standard or Enhanceed Model Architecture for the Planning Plant in SPRO. (SPRO>PMCS>WCM--> Master Data --> Architecture)
    Also you should Activate WCM for Maintenance Orders (SPRO>PMCS>WCM--> Approvals)
    Then the Reference Object you are using for Order creation should have the Permit(Approval) used above assigned to it & Auto Proposal should be checked.
    When you create a Order on such Equipment, WCM will get activated Automatically. Also you can activate using Operational Control key of WCM.
    If Standard Model the Flow is Order --> Work Clearance Application --> Work Clearence Document. Release Permits in Order and proceed to Tag in WCD. Then Release the Order for Execution.... and so on.
    If Enhanced Model the Flow is Order --> Valuation --> Work Approval --> Work Clearance Application --> Work Clearence Document. Release Permits in Order and proceed to Tag in WCD. Then Release the Order for Execution.... and so on.
    Regards,
    MLN Prasad

  • Poblem in WCM Object

    hi,
    i have activated enhanced model of WCM (work clearance management) and finished all relevant configuration..
    still i am not able to create WCM Objects like
    1. work approvals
    2. Applications
    3. operation documents.
    during creation of these above mentioned object i am getting following two error
    1. No entry/entries in the table (WCCL)
    2. Error when executing function module          WCFC_WCVLTAB_GET)
    Please suggest how to proccedd further.
    Regards,
    Amit kushwaha

    hi,
    sanjeev,
    here i am stucked in Cross documentation approval settings..
    Problem is this whenever i am going to issue a approval in WCDs ( status is red), an another popups comes  stating name of WCA(work clearance application,, status of WCA is yellow.).
    Is there any herirachy for giving approvals . i mean first we have to issue aproval in workclearance aproval then work clearance application then only we can issue approvals in WCD's...
    please guide....

  • CQ5.6 core bundles not activated

    I am getting this:
    25.06.2014 09:06:29.891 *ERROR* [FelixStartLevel] ERROR: Error starting jcrinstall:/apps/geometrixx-commons/install/cq-geometrixx-commons-core-1.0.10.jar (org.osgi.framework.BundleException: Unresolved constraint in bundle com.adobe.cq.wcm.cq-geometrixx-commons-core [150]: Unable to resolve 150.0: missing requirement [150.0] osgi.wiring.package; (osgi.wiring.package=com.day.cq.wcm.foundation)) org.osgi.framework.BundleException: Unresolved constraint in bundle com.adobe.cq.wcm.cq-geometrixx-commons-core [150]: Unable to resolve 150.0: missing requirement [150.0] osgi.wiring.package; (osgi.wiring.package=com.day.cq.wcm.foundation) at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:3896) at org.apache.felix.framework.Felix.startBundle(Felix.java:1938) at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1261) at org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:298) at java.lang.Thread.run(Thread.java:745)
    This appears in the bundles console for the bundles installed but not activated: com.day.cq.wcm.foundation -- Cannot be resolved And this when trying to access content: Not Found Cannot serve request to /projects.html in org.apache.sling.servlets.get.DefaultGetServlet CRXDE Lite and the bundles console works though. But I have no clue why this happens just after content import. Thanks.

    Hi,
         Try this to persist div ids in rich text editor in cq5.6
         Create a folder structure similar to "/libs/cq/ui/rte/core/HtmlSerializer.js"  in apps as "/apps/cq/ui/rte/core/HtmlSerializer.js". Make sure that the folder structure and node types are as same as in libs. Then set "idAttribMode" to "keep" in "_init" function of HtmlSerializer.js. It will work
    Thanks,
    Arya.

  • WCM Not able to copy equipment

    Hi , I'm using enhanced model of WCM.I've created order for a "Equipment 1" which is installed under "function location 1".From maintenance order i am activating WCM.In Work approval I am able to copy only "Function location 1 " despite have tick indicator to copy "Ref object incl installed equipment" & equipment field in it is grayed out preventing further entry.  why it is not copying.
    Even manually if I go to work approval create transaction enter this "Equipment 1" , "Function location 1" field will not get updated & will get grayed out so that nothing can be entered. 
    Any additions is to be done to behave similar way as in maintenance order(if equipment is entered function location will get updated).
    Regards,

    Dear Srinivas,
    By default the system copies the Functional location as reference object.And if the order is against an equipment it will be recorded in the object list of WAP.
    If you want to change the reference object to equipment mannually ,please do the following
    Click on the Create /change object list icon ( right to the functional location) in the work approval
    remove/delete  the equipment from object list
    Remove the functional location from the reference object field. Now reference object - equipment field will be open for editing and you can enter the equipment there.
    Note: if you want to add the functional location in the object list again you can go to object list and add Functional location there.
    Best Regards

  • Windows could not set a partition active on disk 0. error 0X80300024

    I followed the "Step-by-Step: Basic Windows Deployment" Link: http://technet.microsoft.com/en-us/library/dd349348%28v=ws.10%29.aspx
    after creating aotounattend.xml file, I went to step2: building reference installation. however, recieving the below error message:
    "windows could not set a partition active on disk 0. The target disk, partition, or volume does not support the specified operation. The error occurred while applying the unattend asnwer file's <DiskConfiguration> setting. Error code: 0X80300024"
    it happened in the beginning of installation.
    what's more, before that error, system still asked me to choose which languange in the installation and I also need to click install button to begin installation.
    I believe that with answer file, windows 7 should start installation automatically. Am I right?
    Here is my answer file:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="specialize">
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Home_Page>http://www.google.com</Home_Page>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Reseal>
                    <Mode>Audit</Mode>
                </Reseal>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <ProtectYourPC>3</ProtectYourPC>
                </OOBE>
            </component>
        </settings>
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-us</UILanguage>
                </SetupUILanguage>
                <InputLocale>en-us</InputLocale>
                <SystemLocale>en-us</SystemLocale>
                <UILanguage>en-us</UILanguage>
                <UserLocale>en-us</UserLocale>
            </component>
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserData>
                    <AcceptEula>true</AcceptEula>
                </UserData>
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Order>1</Order>
                                <Size>300</Size>
                                <Type>Primary</Type>
                            </CreatePartition>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>2</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>System</Label>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                            <ModifyPartition wcm:action="add">
                                <Format>NTFS</Format>
                                <Label>Windows</Label>
                                <Order>2</Order>
                                <PartitionID>2</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                    <WillShowUI>OnError</WillShowUI>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>2</PartitionID>
                        </InstallTo>
                        <InstallToAvailablePartition>false</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/users/dyang3/desktop/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    Hi all,
    I have created an answer file using Windows SIM tool. Please find the answer file below:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>System</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>DB_Data</Label>
                                <Letter>D</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>1</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>Image_Data</Label>
                                <Letter>E</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>2</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                </UserData>
            </component>
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                    <WillShowUI>Never</WillShowUI>
                </SetupUILanguage>
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <AutoLogon>
                    <Password>
                        <Value>YQBkAG0AJABwAHcAZAAkADQAJABtAGUAZABQAGEAcwBzAHcAbwByAGQA</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Username>Administrator</Username>
                    <Enabled>true</Enabled>
                </AutoLogon>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cmd /c wmic useraccount where &quot;name=&apos;Administrator&apos;&quot; set passwordExpires=FALSE</CommandLine>
                        <Order>1</Order>
                    </SynchronousCommand>
                </FirstLogonCommands>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>YQBkAG0AJABwAHcAZAAkADQAJABtAGUAZABBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                </UserAccounts>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
            <component name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
            </component>
        </settings>
        <settings pass="generalize">
            <component name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
            </component>
        </settings>
        <settings pass="auditSystem">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <AutoLogon>
                    <Password>
                        <Value>YQBkAG0AJABwAHcAZAAkADQAJABtAGUAZABQAGEAcwBzAHcAbwByAGQA</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Enabled>true</Enabled>
                    <Username>Administrator</Username>
                </AutoLogon>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>YQBkAG0AJABwAHcAZAAkADQAJABtAGUAZABBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                </UserAccounts>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/coem/workbenchwin2008/iso/sources/install.wim#my win2008 san install" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    It doesn't work. System configurations are,
    -> system with out build-in harddisk
    -> there were 3 disks from SAN
    -> you can see that disks 0, 1 and 2 are configured in diskconfiguration section.
    After constructing new COEM with this answer file, when i boot the system via DVD disk, in some point in time, i get the following exception:
    the
    target disk, partition or voume doesnot support the specified operations.
    The
    error occured while applying the unattended answer file's <DiskConfiguration> setting. Error code 0x80300024
    any help would be appreciated.
    Thank you
    Regards,
    Saravanan

  • "No active userstore is set": portal not started.

    Hi,
    I put ABAP and Java together and this morning when I restart j2ee, I found server stated but dispatcher is not.
    when I go to http://hostname:50000/irj/portal I got error
    503   Service Unavailable
      7.00 
      Dispatcher running but no server connected!
      Details:   No details available
    then I check the log file std_server0.out file and find following logs.
    I feel the problem is no active userstore is set. and I did check config tool regarding
    the com.sap.engine.services.security and 1. I did not change anything there before, 2. I restore the default setting which does not make any changes.
    what do I need to check or get this fixed?
    George
    details of std_server0.out:
    stdout/stderr redirect
    node name   : server0
    pid         : 2136
    system name : BWD
    system nr.  : 00
    started at  : Fri Dec 26 13:52:42 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 4788] MtxInit: 10001 0 0
    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
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: 文件名、目录名或卷标语法不正确。
    Loading: LogManager ... 2656 ms.
    Loading: PoolManager ... 31 ms.
    Loading: ApplicationThreadManager ... 250 ms.
    Loading: ThreadManager ... 31 ms.
    Loading: IpVerificationManager ... 16 ms.
    Loading: ClassLoaderManager ... 15 ms.
    Loading: ClusterManager ... 719 ms.
    Loading: LockingManager ... 141 ms.
    Loading: ConfigurationManager ... 4062 ms.
    Loading: LicensingManager ... 47 ms.
    Loading: CacheManager ... 188 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (16 ms).
      Service memory started. (78 ms).
      Service cafeuodi~mnuacc started. (0 ms).
      Service timeout started. (110 ms).
      Service cross started. (156 ms).
      Service runtimeinfo started. (15 ms).
      Service file started. (187 ms).
      Service trex.service started. (172 ms).
      Service p4 started. (485 ms).
      Service classpath_resolver started. (47 ms).
      Service cafeucc~api started. (1485 ms).
      Service userstore started. (15 ms).
      Service jmx_notification started. (93 ms).
      Service log_configurator started. (7968 ms).
      Service locking started. (16 ms).
      Service naming started. (391 ms).
      Service ts started. (62 ms).
      Service failover started. (172 ms).
      Service licensing started. (47 ms).
      Service appclient started. (157 ms).
      Service javamail started. (250 ms).
      Service jmsconnector started. (281 ms).
      Service connector started. (297 ms).
      Service iiop started. (468 ms).
      Service http started. (938 ms).
      Service webservices started. (1016 ms).
      Service deploy started. (24156 ms).
      Service configuration started. (47 ms).
      Service MigrationService started. (32 ms).
      Service bimmrdeployer started. (15 ms).
      Service dbpool started. (1328 ms).
      Service cafeugpmailcf started. (47 ms).
      Service com.sap.security.core.ume.service started. (4704 ms).
    Dec 26, 2008 1:53:36 PM  ...xt.<init>(UserContextSpi, Properties) [SAPEngine_System_Thread[impl:5]_24] Fatal: Can not instantiate UserContext with given properties.
      service security ================= ERROR =================
    Core service security failed. J2EE Engine cannot be started.
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    [Framework -> criticalShutdown] Core service security failed. J2EE Engine cannot be started.
    Dec 26, 2008 1:53:36 PM             com.sap.engine.core.Framework [SAPEngine_System_Thread[impl:5]_24] Fatal: Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.
    stdout/stderr redirect
    node name   : server0
    pid         : 2136
    system name : BWD
    system nr.  : 00
    started at  : Fri Dec 26 13:53:37 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 6844] MtxInit: 10001 0 0
    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
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: 文件名、目录名或卷标语法不正确。
    Loading: LogManager ... 391 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 109 ms.
    Loading: ThreadManager ... 32 ms.
    Loading: IpVerificationManager ... 0 ms.
    Loading: ClassLoaderManager ... 15 ms.
    Loading: ClusterManager ... 203 ms.
    Loading: LockingManager ... 63 ms.
    Loading: ConfigurationManager ... 2375 ms.
    Loading: LicensingManager ... 31 ms.
    Loading: CacheManager ... 219 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service memory started. (32 ms).
      Service cafeuodi~mnuacc started. (0 ms).
      Service cross started. (16 ms).
      Service file started. (78 ms).
      service appclient ================= ERROR =================
      Service runtimeinfo started. (63 ms).
      Service timeout started. (125 ms).
      Service cafeucc~api started. (46 ms).
      Service trex.service started. (141 ms).
      Service userstore started. (31 ms).
      Service jmx_notification started. (47 ms).
      Service p4 started. (219 ms).
      Service classpath_resolver started. (31 ms).
      Service log_configurator started. (8906 ms).
      Service locking started. (16 ms).
      Service naming started. (500 ms).
      Service http started. (688 ms).
      Service failover started. (156 ms).
      Service javamail started. (250 ms).
      Service jmsconnector started. (250 ms).
      Service ts started. (218 ms).
      Service licensing started. (0 ms).
      Service connector started. (281 ms).
      Service iiop started. (203 ms).
      Service webservices started. (578 ms).
      Service deploy started. (22171 ms).
      Service MigrationService started. (93 ms).
      Service bimmrdeployer started. (31 ms).
      Service configuration started. (109 ms).
      Service dbpool started. (3703 ms).
      Service cafeugpmailcf started. (63 ms).
      Service com.sap.security.core.ume.service started. (2453 ms).
    Dec 26, 2008 1:54:16 PM  ...xt.<init>(UserContextSpi, Properties) [Session Reader for cluster node 3388400] Fatal: Can not instantiate UserContext with given properties.
      service security ================= ERROR =================
    Core service security failed. J2EE Engine cannot be started.
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    [Framework -> criticalShutdown] Core service security failed. J2EE Engine cannot be started.
    Dec 26, 2008 1:54:16 PM             com.sap.engine.core.Framework [Session Reader for cluster node 3388400] Fatal: Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.
    stdout/stderr redirect
    node name   : server0
    pid         : 2136
    system name : BWD
    system nr.  : 00
    started at  : Fri Dec 26 13:54:17 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 5464] MtxInit: 10001 0 0
    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
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: 文件名、目录名或卷标语法不正确。
    Loading: LogManager ... 391 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 78 ms.
    Loading: ThreadManager ... 63 ms.
    Loading: IpVerificationManager ... 15 ms.
    Loading: ClassLoaderManager ... 16 ms.
    Loading: ClusterManager ... 172 ms.
    Loading: LockingManager ... 62 ms.
    Loading: ConfigurationManager ... 1828 ms.
    Loading: LicensingManager ... 32 ms.
    Loading: CacheManager ... 125 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service cafeuodi~mnuacc started. (0 ms).
      Service cross started. (31 ms).
      Service memory started. (63 ms).
      Service file started. (203 ms).
      Service runtimeinfo started. (47 ms).
      Service cafeucc~api started. (47 ms).
      Service timeout started. (187 ms).
      Service trex.service started. (125 ms).
      Service userstore started. (31 ms).
      Service jmx_notification started. (31 ms).
      Service p4 started. (188 ms).
      Service classpath_resolver started. (31 ms).
      Service log_configurator started. (7141 ms).
      Service locking started. (0 ms).
      Service naming started. (296 ms).
      Service failover started. (125 ms).
      Service appclient started. (125 ms).
      Service http started. (531 ms).
      Service jmsconnector started. (203 ms).
      Service javamail started. (266 ms).
      Service ts started. (187 ms).
      Service licensing started. (15 ms).
      Service connector started. (297 ms).
      Service iiop started. (359 ms).
      Service webservices started. (578 ms).
      Service deploy started. (17484 ms).
      Service MigrationService started. (46 ms).
      Service bimmrdeployer started. (31 ms).
      Service configuration started. (47 ms).
      Service dbpool started. (1125 ms).
      Service cafeugpmailcf started. (47 ms).
      Service com.sap.security.core.ume.service started. (2047 ms).
    Dec 26, 2008 1:54:47 PM  ...xt.<init>(UserContextSpi, Properties) [SAPEngine_System_Thread[impl:5]_30] Fatal: Can not instantiate UserContext with given properties.
      service security ================= ERROR =================
    Core service security failed. J2EE Engine cannot be started.
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    [Framework -> criticalShutdown] Core service security failed. J2EE Engine cannot be started.
    Dec 26, 2008 1:54:47 PM             com.sap.engine.core.Framework [SAPEngine_System_Thread[impl:5]_30] Fatal: Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.
    stdout/stderr redirect
    node name   : server0
    pid         : 2136
    system name : BWD
    system nr.  : 00
    started at  : Fri Dec 26 13:54:48 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 8012] MtxInit: 10001 0 0
    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
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: 文件名、目录名或卷标语法不正确。
    Loading: LogManager ... 375 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 110 ms.
    Loading: ThreadManager ... 31 ms.
    Loading: IpVerificationManager ... 0 ms.
    Loading: ClassLoaderManager ... 16 ms.
    Loading: ClusterManager ... 218 ms.
    Loading: LockingManager ... 63 ms.
    Loading: ConfigurationManager ... 2297 ms.
    Loading: LicensingManager ... 31 ms.
    Loading: CacheManager ... 187 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service cafeuodi~mnuacc started. (0 ms).
      Service memory started. (32 ms).
      service CUL ================= ERROR =================
      Service cross started. (16 ms).
      Service file started. (63 ms).
      service apptracing ================= ERROR =================
      Service timeout started. (47 ms).
      Service cafeucc~api started. (47 ms).
      Service runtimeinfo started. (16 ms).
      Service trex.service started. (110 ms).
      Service userstore started. (62 ms).
      Service jmx_notification started. (32 ms).
      Service p4 started. (297 ms).
      Service classpath_resolver started. (15 ms).
      Service log_configurator started. (8828 ms).
      Service locking started. (16 ms).
      Service naming started. (422 ms).
      Service failover started. (125 ms).
      Service appclient started. (157 ms).
      Service javamail started. (219 ms).
      Service ts started. (203 ms).
      Service jmsconnector started. (282 ms).
      Service licensing started. (16 ms).
      Service http started. (781 ms).
      Service connector started. (265 ms).
      Service iiop started. (312 ms).
      Service webservices started. (625 ms).
      Service deploy started. (21609 ms).
      Service MigrationService started. (93 ms).
      Service bimmrdeployer started. (31 ms).
      Service configuration started. (78 ms).
      Service dbpool started. (3594 ms).
      Service cafeugpmailcf started. (47 ms).
      Service com.sap.security.core.ume.service started. (2500 ms).
    Dec 26, 2008 1:55:26 PM  ...xt.<init>(UserContextSpi, Properties) [Session Reader for cluster node 3388400] Fatal: Can not instantiate UserContext with given properties.
      service security ================= ERROR =================
    Core service security failed. J2EE Engine cannot be started.
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:402)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:81)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:57)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    [Framework -> criticalShutdown] Core service security failed. J2EE Engine cannot be started.
    Dec 26, 2008 1:55:26 PM             com.sap.engine.core.Framework [Session Reader for cluster node 3388400] Fatal: Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.

    Deb,
    you are right in ST22.
    no SAPJSF in SM04 however in ST22
    I see short dump below:
    Runtime Errors         DYNPRO_SEND_IN_BACKGROUND
    Exception              CX_SY_SEND_DYNPRO_NO_RECEIVER
    Date and Time          26.12.2008 13:15:57
    Short text                                                                               
    Screen output without connection to user.                                                    
    What happened?                                                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLARFC" had to be terminated because it has                      
        come across a statement that unfortunately cannot be executed.                               
    What can you do?                                                                               
    Note down which actions and inputs caused the error.                                                                               
    To process the problem further, contact you SAP system                                       
        administrator.                                                                               
    Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
        at and manage termination messages, and you can also                                         
        keep them for a long time.                                                                   
    Error analysis                                                                               
    An exception occurred that is explained in detail below.                                     
        The exception, which is assigned to class 'CX_SY_SEND_DYNPRO_NO_RECEIVER', was               
         not caught and                                                                               
    therefore caused a runtime error.                                                            
        The reason for the exception is:                                                             
        During background processing, the system attempted to send a                                 
        screen to a user.                                                                               
    Current screen: "SAPMSYST " 0029.                                                            
    How to correct the error                                                                         
        If the error occurred in your own ABAP program or in an SAP                                  
        program you modified, try to remove the error.                                                                               
    If the error occures in a non-modified SAP program, you may be able to                       
        find an interim solution in an SAP Note.                                                     
        If you have access to SAP Notes, carry out a search with the following                       
        keywords:                                                                               
    "DYNPRO_SEND_IN_BACKGROUND" "CX_SY_SEND_DYNPRO_NO_RECEIVER"                                  
        "SAPLARFC" or "LARFCU05"                                                                     
        "ARFC_DEST_CONFIRM"                                                                               
    If you cannot solve the problem yourself and want to send an error                           
        notification to SAP, include the following information:                                                                               
    1. The description of the current problem (short dump)                                                                               
    To save the description, choose "System->List->Save->Local File                           
        (Unconverted)".                                                                               
    2. Corresponding system log                                                                               
    Display the system log by calling transaction SM21.                                       
           Restrict the time interval to 10 minutes before and five minutes                          
        after the short dump. Then choose "System->List->Save->Local File                            
        (Unconverted)".                                                                               
    3. If the problem occurs in a problem of your own or a modified SAP                          
        program: The source code of the program                                                      
           In the editor, choose "Utilities->More                                                    
        Utilities->Upload/Download->Download".                                                                               
    4. Details about the conditions under which the error occurred or which                      
        actions and input led to the error.                                                                               
    System environment                                                                               
    SAP-Release 700                                                                               
    Application server... "bwdev"                                                                
        Network address...... "10.0.16.123"                                                          
        Operating system..... "Windows NT"                                                           
        Release.............. "5.2"                                                                  
        Hardware type........ "4x Intel 80686"                                                       
        Character length.... 8 Bits                                                                  
        Pointer length....... 32 Bits                                                                
        Work process number.. 0                                                                      
        Shortdump setting.... "full"                                                                               
    Database server... "BWDEV\BWD"                                                               
        Database type..... "MSSQL"                                                                   
        Database name..... "BWD"                                                                     
        Database user ID.. "bwd"                                                                               
    Terminal................. "mfc"                                                                               
    Char.set.... "Chinese_CHN.936"                                                                               
    SAP kernel....... 700                                                                        
        created (date)... "Aug 25 2008 01:11:49"                                                     
        create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                             
        Database version. "SQL_Server_8.00 "                                                                               
    Patch level. 175                                                                               
    Patch text.. " "                                                                               
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                             
        SAP database version. 700                                                                    
        Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows               
         NT 6.0"                                                                               
    Memory consumption                                                                               
    Roll.... 8112                                                                               
    EM...... 1045296                                                                               
    Heap.... 0                                                                               
    Page.... 0                                                                               
    MM Used. 730304                                                                               
    MM Free. 313656                                                                               
    User and Transaction                                                                               
    Client.............. 000                                                                     
        User................ "SAPSYS"                                                                
        Language Key........ 1                                                                       
        Transaction......... " "                                                                     
        Transactions ID..... "110CD3DD8838F154B57A000C29233B12"                                                                               
    Program............. "SAPLARFC"                                                              
        Screen.............. "SAPMSSY1 3004"                                                         
        Screen Line......... 2                                                                               
    Information on caller of Remote Function Call (RFC):                                         
        System.............. "LJQ"                                                                   
        Database Release.... 640                                                                     
        Kernel Release...... 640                                                                     
        Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)                           
        Call Type........... "synchron and transactional (emode 0, imode 0)"                         
        Inbound TID.........." "                                                                     
        Inbound Queue Name..." "                                                                     
        Outbound TID........." "                                                                     
        Outbound Queue Name.." "                                                                               
    Client.............. 500                                                                     
        User................ "TEST1"                                                                 
        Transaction......... " "                                                                     
        Call Program........."SAPLARFC"                                                              
        Function Module..... "ARFC_DEST_CONFIRM"                                                     
        Call Destination.... "000CLT"                                                                
        Source Server....... "sapljq_LJQ_00"                                                         
        Source IP Address... "10.0.16.5"                                                                               
    Additional information on RFC logon:                                                         
        Trusted Relationship " "                                                                     
        Logon Return Code... 53                                                                      
        Trusted Return Code. 0                                                                               
    Note: For releases < 4.0, information on the RFC caller are often                            
        only partially available.                                                                    
    Information on where terminated                                                                  
        Termination occurred in the ABAP program "SAPLARFC" - in "ARFC_DEST_CONFIRM".                
        The main program was "SAPMSSY1 ".                                                                               
    In the source code you have the termination point in line 1                                  
        of the (Include) program "LARFCU05".                                                         
    Source Code Extract                                                                               
    Line SourceCde                                                                               
    >>>>>FUNCTION arfc_dest_confirm.                                                                
        2*"----
        3""Lokale Schnittstelle:                                                                  
        4*"  IMPORTING                                                                               
    5*"     VALUE(CALLID) LIKE  ARFCCALLID STRUCTURE  ARFCCALLID                                
        6*"     VALUE(ERRORSTATUS) LIKE  SY-SUBRC DEFAULT 0                                         
        7*"     VALUE(RETUDATA) LIKE  SY-INPUT DEFAULT SPACE                                        
        8*"     VALUE(RS_SERVER_RESOURCES_REQUESTED) TYPE  SYINPUT OPTIONAL                         
        9*"     VALUE(RS_SYSTEM_IDENTITY_REQUESTED) TYPE  RFC_IDENTITY_REQUESTED                    
       10*"       OPTIONAL                                                                          
       11*"     VALUE(RS_SERVER_GROUP_TYPE) TYPE  RFC_RESOURCE_GROUP_TYPE                           
       12*"       OPTIONAL                                                                          
       13*"     VALUE(RS_SERVER_GROUP_NAME) TYPE  RFC_RESOURCE_GROUP_NAME                           
       14*"       OPTIONAL                                                                          
       15*"     VALUE(RS_SERVER_GROUP_TRACE) TYPE  I OPTIONAL                                       
       16*"  EXPORTING                                                                               
    17*"     VALUE(HOLD_DELETE) LIKE  SY-INPUT                                                   
       18*"     VALUE(RS_SYSTEM_IDENTITY) TYPE  RFC_SYSTEM_IDENTITY                                 
       19*"     VALUE(RS_SERVER_RESOURCES_RC) TYPE  SYSUBRC                                         
       20*"  TABLES                                                                               
    Contents of system fields                                                                        
    Name    Val.                                                                               
    SY-SUBRC0                                                                               
    SY-INDEX1                                                                               
    SY-TABIX1                                                                               
    SY-DBCNT1                                                                               
    SY-FDPOS40                                                                               
    SY-LSIND0                                                                               
    SY-PAGNO0                                                                               
    SY-LINNO1                                                                               
    SY-COLNO1                                                                               
    SY-PFKEY                                                                               
    SY-UCOMM                                                                               
    SY-TITLECPIC 和 RFC控制                                                                         
    SY-MSGTY                                                                               
    SY-MSGID                                                                               
    SY-MSGNO000                                                                               
    SY-MSGV1                                                                               
    SY-MSGV2                                                                               
    SY-MSGV3                                                                               
    SY-MSGV4                                                                               
    SY-MODNO0                                                                               
    SY-DATUM20081226                                                                               
    SY-UZEIT131556                                                                               
    SY-XPROGSAPCNVE                                                                               
    SY-XFORMCONVERSION_EXIT                                                                         
    Active Calls/Events                                                                               
    No.   Ty.          Program                             Include                             Line  
          Name                                                                               
        4 FUNCTION     SAPLARFC                            LARFCU05                                1 
          ARFC_DEST_CONFIRM                                                                               
    3 FORM         SAPLARFC                            LARFCU05                                1 
          ARFC_DEST_CONFIRM                                                                               
    2 FORM         SAPMSSY1                            SAPMSSY1                               85 
          REMOTE_FUNCTION_CALL                                                                       
        1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30 
          %_RFC_START                                                                               
    Chosen variables                                                                               
    Name                                                                               
    Val.                                                                               
    No.       4 Ty.          FUNCTION                                                                
    Name  ARFC_DEST_CONFIRM                                                                          
    CALLID                                                                               
    0A0010051758495467BF3459000CLT                          00000001                             
        3433333333333333334433333334452222222222222222222222222233333333                             
        0100100517584954672634590003C40000000000000000000000000000000001                             
    ERRORSTATUS                                                                               
    1                                                                               
    0000                                                                               
    1000                                                                               
    RETUDATA                                                                               
    2                                                                               
    0                                                                               
    RS_SERVER_GROUP_NAME                                                                               
    22222222222222222222                                                                         
        00000000000000000000                                                                         
    RS_SERVER_GROUP_TRACE                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    RS_SERVER_GROUP_TYPE                                                                               
    2                                                                               
    0                                                                               
    RS_SERVER_RESOURCES_REQUESTED                                                                               
    2                                                                               
    0                                                                               
    RS_SYSTEM_IDENTITY_REQUESTED                                                                               
    2                                                                               
    0                                                                               
    HOLD_DELETE                                                                               
    2                                                                               
    0                                                                               
    RS_SERVER_RESOURCES_RC                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    RS_SYSTEM_IDENTITY                                                                               
    2222222222222222222222222222222222222222                                                     
        0000000000000000000000000000000000000000                                                     
    RS_SERVER_GROUP_RESOURCES[]                                                                      
        Table[initial]                                                                               
    OPCODE_TX_ABORT                                                                               
    2                                                                               
    A                                                                               
    <%_TABLE_ARFCRSTATE>                                                                               
    VB_V2_SERVER                                                                               
    0                                                                               
    2                                                                               
    DSTATE                                                                               
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    VB_V1_RESTART_CONTINUE                                                                               
    0                                                                               
    C                                                                               
    RFC_RFCDES                                                                               
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    VB_ARFC_FB                                                                               
    4                                                                               
    3                                                                               
    4                                                                               
    VB_V2_AUTO_SYS_CONTINUE                                                                               
    1                                                                               
    7                                                                               
    %_TIME_QINBATCH                                                                               
    003000                                                                               
    333333                                                                               
    003000                                                                               
    COL_DELETE                                                                               
    2                                                                               
    0                                                                               
    TH_VMC_PROF_ROLLTRACE_ENABLE                                                                     
        10                                                                               
    0000                                                                               
    A000                                                                               
    SYST-REPID                                                                               
    SAPLARFC                                                                               
    5454454422222222222222222222222222222222                                                     
        310C126300000000000000000000000000000000                                                     
    VB_REORG                                                                               
    1                                                                               
    3                                                                               
    No.       3 Ty.          FORM                                                                    
    Name  ARFC_DEST_CONFIRM                                                                          
    VB_ARFC_DELETE                                                                               
    2                                                                               
    3                                                                               
    2                                                                               
    TH_UNREG_PARAMETER                                                                               
    %UNREG%                                                                               
    25454422                                                                               
    55E25750                                                                               
    SET_USR_MANDT                                                                               
    0                                                                               
    4                                                                               
    OPCODE_CPIC_LOGIN                                                                               
    1                                                                               
    2                                                                               
    %_%_CALLID                                                                               
    0A0010051758495467BF3459000CLT                          00000001                             
        3433333333333333334433333334452222222222222222222222222233333333                             
        0100100517584954672634590003C40000000000000000000000000000000001                             
    OPCODE_ASYNC_RECEIVE                                                                               
    1                                                                               
    3                                                                               
    %_%_ERRORSTATUS                                                                               
    1                                                                               
    0000                                                                               
    1000                                                                               
    OPCODE_USR_DEL                                                                               
    1                                                                               
    4                                                                               
    %_%_RETUDATA                                                                               
    2                                                                               
    0                                                                               
    OPCODE_DELETE_MODE                                                                               
    1                                                                               
    8                                                                               
    %_%_RS_SERVER_GROUP_NAME                                                                               
    22222222222222222222                                                                         
        00000000000000000000                                                                         
    OPCODE_DELETE_USR                                                                               
    1                                                                               
    9                                                                               
    %_%_RS_SERVER_GROUP_TRACE                                                                        
        0                                                                               
    0000                                                                               
    0000                                                                               
    OPCODE_CREATE_MODE                                                                               
    1                                                                               
    7                                                                               
    %_%_RS_SERVER_GROUP_TYPE                                                                               
    2                                                                               
    0                                                                               
    OPCODE_USR_RECONNECT                                                                               
    1                                                                               
    5                                                                               
    %_%_RS_SERVER_RESOURCES_REQUESTED                                                                               
    2                                                                               
    0                                                                               
    OPCODE_INVALIDATE_CUA                                                                               
    1                                                                               
    6                                                                               
    %_%_RS_SYSTEM_IDENTITY_REQUESTED                                                                               
    2                   

  • J2ee server failed to start: No active userstore is set

    Hi,
    I have troubled in starting J2ee engine the std_server0.out file contains the following description Please help
    Jun 2, 2008 4:19:30 PM   ...xt.<init>(UserContextSpi, Properties) [SAPEngine_System_Thread[impl:5]_11] Fatal: Can not instantiate UserContext with given properties.
      service security ================= ERROR =================
    Core service security failed. J2EE Engine cannot be started.
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:181)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:405)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:84)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:58)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:181)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         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)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: No active userstore is set.
         at com.sap.engine.services.security.server.UserStoreFactoryImpl.getActiveUserStore(UserStoreFactoryImpl.java:77)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.update(LoginModuleHelperImpl.java:405)
         at com.sap.engine.services.security.server.jaas.LoginModuleHelperImpl.<init>(LoginModuleHelperImpl.java:84)
         at com.sap.engine.services.security.server.SecurityContextImpl.<init>(SecurityContextImpl.java:58)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:135)
         ... 5 more
    [Framework -> criticalShutdown] Core service security failed. J2EE Engine cannot be started.
    Jun 2, 2008 4:19:30 PM              com.sap.engine.core.Framework [SAPEngine_System_Thread[impl:5]_11] Fatal: Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.
    Thanks & Regards,
    Bhupinder Singh

    Hi below is dev_server0 content and i have check that note earlier but it didnt work in my case
    trc file: "F:\usr\sap\BS1\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13330450
    pid         : 4428
    system name : BS1
    system nr.  : 01
    started at  : Mon Jun 02 16:53:04 2008
    arguments       :
           arg[00] : F:\usr\sap\BS1\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[02] : -DSAPINFO=BS1_01_server
           arg[03] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3207
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=BS1
           arg[08] : -DSAPMYNAME=sapserver2_BS1_01
           arg[09] : -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4180] Mon Jun 02 16:53:04 2008
    [Thr 4180] *** WARNING => INFO: Unknown property [instance.box.number=BS1DVEBMGS01sapserver2] [jstartxx.c   841]
    [Thr 4180] *** WARNING => INFO: Unknown property [instance.en.host=sapserver2] [jstartxx.c   841]
    [Thr 4180] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 4180] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> OS libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> os libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13330400 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13330450 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13330400           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13330450           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 4180] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4180] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 1776] WaitSyncSemThread: Thread 1776 started as semaphore monitor thread.
    [Thr 4372] JLaunchRequestFunc: Thread 4372 started as listener thread for np messages.
    [Thr 4180] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 4180] CPIC (version=700.2005.12.02)
    [Thr 4180] [Node: server0] java home is set by profile parameter
         Java Home: F:\j2sdk1.4.2_12
    [Thr 4180] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13330450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : F:\j2sdk1.4.2_12
    -> 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 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\BS1\DVEBMGS01\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     : F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 4180] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4892] JLaunchIStartFunc: Thread 4892 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]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=F:\usr\sap\BS1\SYS\global
    -> arg[ 25]: -Dapplication.home=F:\usr\sap\BS1\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=F:\j2sdk1.4.2_12\jre\bin\server;F:\j2sdk1.4.2_12\jre\bin;F:\j2sdk1.4.2_12\bin;F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs;F:\Program Files\PC Connectivity Solution\;F:\oracle\product\10.2.0\db_1\bin;F:\WINDOWS\system32;F:\WINDOWS;F:\WINDOWS\System32\Wbem;F:\j2sdk1.4.2_16\bin;F:\oracle\product\10.2.0\db_1\OPatch;F:\usr\sap\BS1\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=4428
    -> arg[ 34]: -Djstartup.ownHardwareId=E0215248427
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=BS1_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3207
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=BS1
    -> arg[ 42]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=BS1
    -> arg[ 49]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 50]: -DSAPDBHOST=sapserver2
    -> arg[ 51]: -Dj2ee.dbhost=sapserver2
    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 4892] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4332] Mon Jun 02 16:53:08 2008
    [Thr 4332] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4332] Mon Jun 02 16:53:10 2008
    [Thr 4332] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4332] JLaunchISetClusterId: set cluster id 13330450
    [Thr 4332] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4332] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 6016] Mon Jun 02 16:53:54 2008
    [Thr 6016] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 6016] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "F:\usr\sap\BS1\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13330450
    pid         : 2956
    system name : BS1
    system nr.  : 01
    started at  : Mon Jun 02 16:53:55 2008
    arguments       :
           arg[00] : F:\usr\sap\BS1\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[02] : -DSAPINFO=BS1_01_server
           arg[03] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3207
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=BS1
           arg[08] : -DSAPMYNAME=sapserver2_BS1_01
           arg[09] : -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 3392] Mon Jun 02 16:53:55 2008
    [Thr 3392] *** WARNING => INFO: Unknown property [instance.box.number=BS1DVEBMGS01sapserver2] [jstartxx.c   841]
    [Thr 3392] *** WARNING => INFO: Unknown property [instance.en.host=sapserver2] [jstartxx.c   841]
    [Thr 3392] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 3392] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> OS libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> os libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13330400 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13330450 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13330400           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13330450           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 3392] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 3392] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 3352] JLaunchRequestFunc: Thread 3352 started as listener thread for np messages.
    [Thr 2872] WaitSyncSemThread: Thread 2872 started as semaphore monitor thread.
    [Thr 3392] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 3392] CPIC (version=700.2005.12.02)
    [Thr 3392] [Node: server0] java home is set by profile parameter
         Java Home: F:\j2sdk1.4.2_12
    [Thr 3392] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13330450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : F:\j2sdk1.4.2_12
    -> 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 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\BS1\DVEBMGS01\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     : F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 3392] JLaunchISetDebugMode: set debug mode [no]
    [Thr 2808] JLaunchIStartFunc: Thread 2808 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]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=F:\usr\sap\BS1\SYS\global
    -> arg[ 25]: -Dapplication.home=F:\usr\sap\BS1\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=F:\j2sdk1.4.2_12\jre\bin\server;F:\j2sdk1.4.2_12\jre\bin;F:\j2sdk1.4.2_12\bin;F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs;F:\Program Files\PC Connectivity Solution\;F:\oracle\product\10.2.0\db_1\bin;F:\WINDOWS\system32;F:\WINDOWS;F:\WINDOWS\System32\Wbem;F:\j2sdk1.4.2_16\bin;F:\oracle\product\10.2.0\db_1\OPatch;F:\usr\sap\BS1\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=2956
    -> arg[ 34]: -Djstartup.ownHardwareId=E0215248427
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=BS1_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3207
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=BS1
    -> arg[ 42]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=BS1
    -> arg[ 49]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 50]: -DSAPDBHOST=sapserver2
    -> arg[ 51]: -Dj2ee.dbhost=sapserver2
    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 2808] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3660] Mon Jun 02 16:53:57 2008
    [Thr 3660] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3660] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3660] JLaunchISetClusterId: set cluster id 13330450
    [Thr 3660] Mon Jun 02 16:53:58 2008
    [Thr 3660] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3660] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3384] Mon Jun 02 16:54:29 2008
    [Thr 3384] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3384] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "F:\usr\sap\BS1\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13330450
    pid         : 3124
    system name : BS1
    system nr.  : 01
    started at  : Mon Jun 02 16:54:31 2008
    arguments       :
           arg[00] : F:\usr\sap\BS1\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[02] : -DSAPINFO=BS1_01_server
           arg[03] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3207
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=BS1
           arg[08] : -DSAPMYNAME=sapserver2_BS1_01
           arg[09] : -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 2724] Mon Jun 02 16:54:31 2008
    [Thr 2724] *** WARNING => INFO: Unknown property [instance.box.number=BS1DVEBMGS01sapserver2] [jstartxx.c   841]
    [Thr 2724] *** WARNING => INFO: Unknown property [instance.en.host=sapserver2] [jstartxx.c   841]
    [Thr 2724] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 2724] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> OS libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> os libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13330400 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13330450 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13330400           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13330450           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 2724] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 2724] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2976] JLaunchRequestFunc: Thread 2976 started as listener thread for np messages.
    [Thr 328] WaitSyncSemThread: Thread 328 started as semaphore monitor thread.
    [Thr 2724] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 2724] CPIC (version=700.2005.12.02)
    [Thr 2724] [Node: server0] java home is set by profile parameter
         Java Home: F:\j2sdk1.4.2_12
    [Thr 2724] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13330450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : F:\j2sdk1.4.2_12
    -> 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 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\BS1\DVEBMGS01\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     : F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 2724] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3192] JLaunchIStartFunc: Thread 3192 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]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=F:\usr\sap\BS1\SYS\global
    -> arg[ 25]: -Dapplication.home=F:\usr\sap\BS1\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=F:\j2sdk1.4.2_12\jre\bin\server;F:\j2sdk1.4.2_12\jre\bin;F:\j2sdk1.4.2_12\bin;F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs;F:\Program Files\PC Connectivity Solution\;F:\oracle\product\10.2.0\db_1\bin;F:\WINDOWS\system32;F:\WINDOWS;F:\WINDOWS\System32\Wbem;F:\j2sdk1.4.2_16\bin;F:\oracle\product\10.2.0\db_1\OPatch;F:\usr\sap\BS1\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=3124
    -> arg[ 34]: -Djstartup.ownHardwareId=E0215248427
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=BS1_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3207
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=BS1
    -> arg[ 42]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=BS1
    -> arg[ 49]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 50]: -DSAPDBHOST=sapserver2
    -> arg[ 51]: -Dj2ee.dbhost=sapserver2
    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 3192] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 2548] Mon Jun 02 16:54:32 2008
    [Thr 2548] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 2548] Mon Jun 02 16:54:33 2008
    [Thr 2548] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2548] JLaunchISetClusterId: set cluster id 13330450
    [Thr 2548] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2548] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3224] Mon Jun 02 16:55:05 2008
    [Thr 3224] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3224] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "F:\usr\sap\BS1\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13330450
    pid         : 4980
    system name : BS1
    system nr.  : 01
    started at  : Mon Jun 02 16:55:06 2008
    arguments       :
           arg[00] : F:\usr\sap\BS1\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[02] : -DSAPINFO=BS1_01_server
           arg[03] : pf=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3207
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=BS1
           arg[08] : -DSAPMYNAME=sapserver2_BS1_01
           arg[09] : -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 5704] Mon Jun 02 16:55:06 2008
    [Thr 5704] *** WARNING => INFO: Unknown property [instance.box.number=BS1DVEBMGS01sapserver2] [jstartxx.c   841]
    [Thr 5704] *** WARNING => INFO: Unknown property [instance.en.host=sapserver2] [jstartxx.c   841]
    [Thr 5704] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 5704] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> OS libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver2
    -> ms port    : 3900
    -> os libs    : F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13330400 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13330450 : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13330400           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13330450           : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 5704] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5704] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4384] JLaunchRequestFunc: Thread 4384 started as listener thread for np messages.
    [Thr 5272] WaitSyncSemThread: Thread 5272 started as semaphore monitor thread.
    [Thr 5704] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 5704] CPIC (version=700.2005.12.02)
    [Thr 5704] [Node: server0] java home is set by profile parameter
         Java Home: F:\j2sdk1.4.2_12
    [Thr 5704] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13330450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : F:\j2sdk1.4.2_12
    -> 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 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\BS1\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\BS1\DVEBMGS01\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     : F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 5704] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4764] JLaunchIStartFunc: Thread 4764 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]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=F:\usr\sap\BS1\SYS\global
    -> arg[ 25]: -Dapplication.home=F:\usr\sap\BS1\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=F:\usr\sap\BS1\DVEBMGS01\exe\jstartup.jar;F:\usr\sap\BS1\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=F:\j2sdk1.4.2_12\jre\bin\server;F:\j2sdk1.4.2_12\jre\bin;F:\j2sdk1.4.2_12\bin;F:\usr\sap\BS1\DVEBMGS01\j2ee\os_libs;F:\Program Files\PC Connectivity Solution\;F:\oracle\product\10.2.0\db_1\bin;F:\WINDOWS\system32;F:\WINDOWS;F:\WINDOWS\System32\Wbem;F:\j2sdk1.4.2_16\bin;F:\oracle\product\10.2.0\db_1\OPatch;F:\usr\sap\BS1\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=4980
    -> arg[ 34]: -Djstartup.ownHardwareId=E0215248427
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=BS1_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3207
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=BS1
    -> arg[ 42]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\BS1\SYS\profile\BS1_DVEBMGS01_sapserver2
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=BS1
    -> arg[ 49]: -DSAPMYNAME=sapserver2_BS1_01
    -> arg[ 50]: -DSAPDBHOST=sapserver2
    -> arg[ 51]: -Dj2ee.dbhost=sapserver2
    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 4764] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 2096] Mon Jun 02 16:55:08 2008
    [Thr 2096] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 2096] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2096] JLaunchISetClusterId: set cluster id 13330450
    [Thr 2096] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2096] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 4752] Mon Jun 02 16:55:40 2008
    [Thr 4752] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 4752] JLaunchCloseProgram: good bye (exitcode = -11113)

Maybe you are looking for

  • Why can't I send Photos using Message on my Mac w Yosemite

    I have just tried to send a photo, taken w my iPhone 6 and properly shared automatically to my MBP w/Yosemite. I cannot send it via email; I cannot send it via Messages. I checked for solutions re email; I use Postbox as my email client which may be

  • Ipod touch not being recognized

    Hi, I am plugging in my son's ipod touch and it is not being recognized by the computer or itunes - only being asked about it being a camera - help - thanks - Debbie

  • Phone usage counter and carriers counter don't match?

    I have been pretty consistant about reseting my usage counter on my iphone on my billing day.  And yesterday i got a notice saying i was at 65%.  I checked my phone and only showed ~37mb of in and out usage but when i logged into att it says i'm at 1

  • ZF9_RE_GET_SD_SALES_VOL

    HI EXPERTS, I NEED TO KNOW HOW THIS FUNCTION MODULE 'ZF9_RE_GET_SD_SALES_VOL'  WORKS. the function module returns 3 tables. i have to find which table has cumulative volume. Thanks. Bijal

  • Search engine-yahoo or safari

    I am new to Mac Air.  When I first started using my Mac, I thought my search engine was Safari.  However, today I noticed that when I clicked on Safari to do a search, Yahoo was the substituted as the search engine.  Is this the way it should be?  If