Failed to create "ejb/collaxa/system/FinderBean" bean; exception reported i

I am unable to invoke BPEL service from an OA framework page. I am getting following error when I am trying to Invoke.
oracle.apps.fnd.framework.OAException: java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "java.lang.NullPointerException: domain was null
     at com.evermind.server.rmi.RMIServer.addNode(RMIServer.java:779)
     at com.evermind.server.rmi.RMIServer.getConnection(RMIServer.java:848)
     at com.evermind.server.rmi.RMIInitialContextFactory.getInitialContext(RMIInitialContextFactory.java:206)
     at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
     at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
     at javax.naming.InitialContext.init(InitialContext.java:219)
     at javax.naming.InitialContext.<init>(InitialContext.java:195)
     at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:277)
     at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
     at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
     at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
     at emr2.oracle.apps.inv.kanban.webui.KanPOCTestCO.getMsg(KanPOCTestCO.java:93)
     at emr2.oracle.apps.inv.kanban.webui.KanPOCTestCO.processRequest(KanPOCTestCO.java:45)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:518)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:920)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1536)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:575)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:363)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:575)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:330)
     at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2121)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1562)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
     at _OA._jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
Code I am using to invoke is:
          Hashtable jndi = null;
          jndi = new Hashtable();
          jndi.put(Context.PROVIDER_URL, "ormi://142.176.225.111:23791/orabpel");
          jndi.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
          jndi.put(Context.SECURITY_PRINCIPAL, "oc4jadmin");
          jndi.put(Context.SECURITY_CREDENTIALS, "welcome1");
          Locator locator = new Locator("default", "welcome1", jndi);
          IDeliveryService deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
          //System.out.println("4444");
          String xml ="<FirstTestBPELProcessProcessRequest xmlns=\"http://xmlns.oracle.com/FirstTestBPELProcess\"><input>123456789</input></FirstTestBPELProcessProcessRequest>";
          NormalizedMessage nm = new NormalizedMessage( );
          nm.addPart("payload", xml );
          NormalizedMessage res = deliveryService.request("FirstTestBPELProcess", "process", nm);
          Map payload = res.getPayload();
          Element elem = (Element)payload.get("payload");
This code works excellent when called from a stand alone java class but it is not working when it is called from an OA Page.
Can some one provide any pointer to the error.

I think that your problem is that the Context.PROVIDER_URL is wrong.
Here is a sample of url that we use here:
opmn:ormi://servername:6005:home/orabpel
where:
"servername" is (duh) the servername
"home" is the container that bpel is running
"6005" is the opmn port.

Similar Messages

  • Invoke bpel from java - Failed to create "ejb/collaxa/system/DeliveryBean

    Hi,
    I have a very simple java class to invoke CreditRatingProcess sample:
    String ssn = null;
    if (ssn == null)
    ssn = "123-12-1234";
    String xml =
    "<ssn xmlns=\"http://services.otn.com\">" + ssn + "</ssn>";
    Locator locator = new Locator("default", "oc4jadmin", "localhost");
    IDeliveryService deliveryService =
    (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage();
    nm.addPart("payload", xml);
    NormalizedMessage res =
    deliveryService.request("CreditRatingService", "process", nm);
    Map payload = res.getPayload();
    System.out.println("BPELProcess CreditRatingService executed!<br>");
    System.out.println("Credit Rating is " + payload.get("payload"));
    When I try to execute, I have the following error:
    java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at docsdemo.bpelapi.BPELProcess.callProcess(BPELProcess.java:84)
         at docsdemo.bpelapi.tests.Test1.<init>(Test1.java:14)
         at docsdemo.bpelapi.tests.Test1.main(Test1.java:18)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:293)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at docsdemo.bpelapi.BPELProcess.callProcess(BPELProcess.java:84)
         at docsdemo.bpelapi.tests.Test1.<init>(Test1.java:14)
         at docsdemo.bpelapi.tests.Test1.main(Test1.java:18)
    I use SOA suite 10.1.3 Developer Preview and JDeveloper 10.1.3
    Can you help me?
    Cyryl
    Message was edited by:
    cbalmati
    Message was edited by:
    cbalmati

    Hi,
    Thanks fro your answer. But it does not work ...
    My demo runs on my laptop (SOA10.1.3 DP / JDeveloper 10.1.3)
    This is my code:
    public void test() {
    String xml = "<name xmlns=\"http://samples.otn.com/helloworld\">" + "test" + "</name>";
    Hashtable jndi = null;
    jndi = new Hashtable();
    // Change the PROVIDER_URL to your BPEL PM host...
    jndi.put(Context.PROVIDER_URL, "ormi://localhost/orabpel");
    jndi.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    jndi.put(Context.SECURITY_PRINCIPAL, "admin");
    jndi.put(Context.SECURITY_CREDENTIALS, "welcome");
    jndi.put("dedicated.connection", "true");
    Locator locator = null;
    try {
    locator = new Locator("default","bpel", jndi);
    } catch (ServerException e) {
    e.printStackTrace();
    IDeliveryService deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage( );
    System.out.println(xml);
    nm.addPart("payload" , xml );
    try {
    deliveryService.post("HelloWorld", "initiate", nm);
    } catch (ServerException e) {
    e.printStackTrace();
    } catch (RemoteException e) {
    e.printStackTrace();
    and that's my error:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/ejb/EJBException
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:76)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:149)
         at docsdemo.ui.XMLMessageHelper.test(XMLMessageHelper.java:62)
         at docsdemo.ui.tests.Tests.<init>(Tests.java:15)
         at docsdemo.ui.tests.Tests.main(Tests.java:20)
    I don't understand because I created a simple JSP to invoke helloWorld process (same code), it's works !!
    Any suggestion?
    Cyryl

  • Oracle BPEL PM API : Failed to create "ejb/collaxa/system/ServerBean"

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

  • Ejb/collaxa/system/DeliveryBean not found   :(

    Hi All
    I have tried all the possible solutions given on this forum to get rid of "ejb/collaxa/system/DeliveryBean not found" Exception when trying to call CreditRatingService from a JSP as given in the tutorial.
    Pls tell me how to resolve this issue.
    09/02/17 18:53:43.203 InvokingProcessesUI: Servlet error
    java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:256)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.lookup(ApplicationContext.java:196)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at _invokeHelloWorld._jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:94)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:303)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at invokeHelloWorld.jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:256)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.lookup(ApplicationContext.java:196)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at _invokeHelloWorld._jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:293)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         ... 17 more
    naveen
    Edited by: user640347 on Feb 17, 2009 5:30 AM

    Hi All
    I have tried all the possible solutions given on this forum to get rid of "ejb/collaxa/system/DeliveryBean not found" Exception when trying to call CreditRatingService from a JSP as given in the tutorial.
    Pls tell me how to resolve this issue.
    09/02/17 18:53:43.203 InvokingProcessesUI: Servlet error
    java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:256)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.lookup(ApplicationContext.java:196)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at _invokeHelloWorld._jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:94)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:303)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at invokeHelloWorld.jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:256)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.ApplicationContext.lookup(ApplicationContext.java:196)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:194)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:169)
         at _invokeHelloWorld._jspService(_invokeHelloWorld.java:62)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:293)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:299)
         ... 17 more
    naveen
    Edited by: user640347 on Feb 17, 2009 5:30 AM

  • LoanFlowUI error: ejb/collaxa/system/DomainManagerBean

    Hi,
    I have deployed the LoanFlowUI.ear file out to a 10g midtier OC4J container and added the relevant paths to the BPEL library files. When I access the LoanFlowUI page on http://machine:port/LoanFlowUI/Homepage.html
    I get the following error returned from the portlet.jsp
    java.lang.Exception: Failed to create "ejb/collaxa/system/DomainManagerBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/DomainManagerBean not found
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.rmi.RMIContext.lookup(RMIContext.java:164)
    I have had a look on metalink but could not find an answer.
    I could deploy the ear file to the BPEL OC4J which I think would then work straightaway but I would like to get it working on the midtier.
    Do I need to deploy orabpel.ear to a container or am I missing a library path or something else?
    Apologies for the new to BPEL question
    Joel.

    this is just a wild guess but i think that some examples work out of the box when u do middle tier installation others dont i think to be able to deploy it in middle tier installation u have to set the properties regarding the domain, user ,etc

  • Invoking BPEL process from Servlet : ejb/collaxa/system/DeliveryBean error

    Hi All,
    My requirement is as below:
    Servlet will receive the delimited HTTP request and convert it into XML. The xml payload will be used to invoke the BPEL Process deployed on Weblogic 10.3 (SOA-INFRA) using Idelivery Class Method.
    The problem I am facing is :
    that while servlet calls the BPEL process it gives "ejb/collaxa/system/DeliveryBean" not created error. javax.naming.exception. The name "ejb" is reloved but subcontext "collaxa/system/DeliveryBean" not resolved.
    Please let me know whether I am missing any step.
    This is urgent. Please suggest.
    Thanks.

    Please make sure that your bpel connectivity properties are correct.
    This error ll come only if host bpel pm server is not visible to your servlet.
    So please make sure all your parameters are correct.
    example, server IP / host name, port number,
    Properties props = new Properties();
    props.put("orabpel.platform", "ias_10g");
    props.put("java.naming.factory.initial","com.evermind.server.rmi.RMIInitialContextFactory");
    props.put("java.naming.provider.url","opmn:ormi://server_name/IP_Address:Port_NO:Instance_name/orabpel");
    props.put("java.naming.security.principal", "oc4jadmin");
    props.put("java.naming.security.credentials", "welcome1");
    Locator locator = new Locator("default","welcome1",props);
    Regards
    Rajesh

  • Javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not fou

    Hi,
    I'm trying to run an esb process that invokes a bpel process but I'm getting the following error invoking bpel:
    oracle.tip.esb.server.common.exceptions.BusinessEventFatalException: Se ha devuelto una excepción no tratada en el sistema ESB. La excepción mostrada es: "java.lang.Exception: Fallo al crear el bean "ejb/collaxa/system/DeliveryBean"; la excepción mostrada es: "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:158)
         at oracle.tip.esb.server.service.impl.bpel.BPELService.processBusinessEvent(BPELService.java:342)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:106)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:85)
         at oracle.tip.esb.server.dispatch.BusinessEvent.raise(BusinessEvent.java:1416)
         at oracle.tip.esb.utils.EventUtils.raiseBusinessEvent(EventUtils.java:105)
         at oracle.tip.esb.server.service.EsbRouterSubscription.onBusinessEvent(EsbRouterSubscription.java:273)
         at oracle.tip.esb.server.dispatch.EventDispatcher.executeSubscription(EventDispatcher.java:138)
         at oracle.tip.esb.server.dispatch.DeferredEventDispatcher.processSubscriptions(DeferredEventDispatcher.java:150)
         at oracle.tip.esb.server.dispatch.EventDispatcher.dispatchRoutingService(EventDispatcher.java:94)
         at oracle.tip.esb.server.dispatch.DeferredEventDispatcher.dispatch(DeferredEventDispatcher.java:67)
         at oracle.tip.esb.server.dispatch.agent.JavaDeferredMessageHandler.handleMessage(JavaDeferredMessageHandler.java:115)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.process(ESBWork.java:162)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.run(ESBWork.java:120)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:82)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:158)
         at oracle.tip.esb.server.service.impl.bpel.BPELService.processBusinessEvent(BPELService.java:342)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:106)
         at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:85)
         at oracle.tip.esb.server.dispatch.BusinessEvent.raise(BusinessEvent.java:1416)
         at oracle.tip.esb.utils.EventUtils.raiseBusinessEvent(EventUtils.java:105)
         at oracle.tip.esb.server.service.EsbRouterSubscription.onBusinessEvent(EsbRouterSubscription.java:273)
         at oracle.tip.esb.server.dispatch.EventDispatcher.executeSubscription(EventDispatcher.java:138)
         at oracle.tip.esb.server.dispatch.DeferredEventDispatcher.processSubscriptions(DeferredEventDispatcher.java:150)
         at oracle.tip.esb.server.dispatch.EventDispatcher.dispatchRoutingService(EventDispatcher.java:94)
         at oracle.tip.esb.server.dispatch.DeferredEventDispatcher.dispatch(DeferredEventDispatcher.java:67)
         at oracle.tip.esb.server.dispatch.agent.JavaDeferredMessageHandler.handleMessage(JavaDeferredMessageHandler.java:115)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.process(ESBWork.jav
    I know that the processes work fine because I have deployed them in another server and they are working fine. The esb process invokes the bpel without problems.
    I have read some threads in this forum where this error appears, but they are related to jsps, and the solution given doesn't apply.
    I really appreciate any help. Thanks in advance,
    Zaloa

    here is the detailed properties.
    properties.put("java.naming.factory.initial",                         "com.evermind.server.rmi.RMIInitialContextFactory");
                   properties.put("java.naming.provider.url", "ormi://localhost");
                   properties.put("java.naming.security.principal",
                             "admin");
                   properties.put("java.naming.security.credentials",
                             "welcome"

  • Zones not booting - failed to create devlinks: Interrupted system call

    I just installed the latest 10_Recommended cluster with 118833-36 kernel patch and now my zones won't boot. I get the error:
    (root)Yes Master?> zoneadm list -iv
    ID NAME STATUS PATH
    0 global running /
    - samba installed /export/home/zones/samba
    - web installed /export/home/zones/web
    - dhcp installed /export/home/zones/dhcp
    - dns installed /export/home/zones/dns
    - vs1 installed /zdata/zones/vs1
    - dss installed /zdata/zones/dss
    - test installed /zdata/zones/test
    (root)Yes Master?> zoneadm -z test boot
    failed to create devlinks: Interrupted system call
    console setup: device initialization failed
    zoneadm: zone 'test': could not start zoneadmd
    zoneadm: zone 'test': call to zoneadmd failed
    Also, running devfsadm or drvconfig;devlinks from the global zone will core dump.
    Any ideas..??
    tia..

    First, you gotta change your prompt to something less embarrassing when you post to a public forum :)
    I'd forget about the zones problem and focus on why devfsadm core dumps -- that's the core of the problem (no pun intended...no, really!).
    First, review the install logs of all the patches installed during the recent service (/var/sadm/patch/*/log). Even if they all show a good completion, check the messages they generated, sometimes they have errors that aren't bad enough to cause a complete failure of the patch. The KJP (118833-36) is probably a good one to start with.
    Next I'd "truss" the devfsadm command while it core dumps then get a stack trace of the core (run "adb <corefile>" and type "$C" -- that's old school, I'm sure mdb is much cooler...).
    Throw some of the strings from those against sunsolve and see if something sticks.
    Good luck!

  • Creating EJB 3.0 Session Bean under JDeveloper 10g.

    Hello im using JDeveloper 10 g all up 2 date.
    when i create EJB 2.x EJB everythink is ok .. there is a Wizzard(Designer) from which i can add methods variables and etc.
    all methods are become added to the session bean / remote interefeis etc.
    My Problem is when i create EJB 3.0
    when i do it the Bean class is created and the Remote interfeis with @remote is created too its ok BUT I CANT see Remote interfeis in my Application Naviagation its fine under 2.1 i cannot see remote interfeis and home interfeis too but inder 2.1 there is a wizzard(Designer) under 3.0 there is nothink.
    what am i wrong ? how can i make designer to work under 3.0 or how can i make Jdeveloper to show me all content of the EJBs

    another strange problem.
    i have an APplication server added ( JBOSS ).
    when i create deployment profile (EAR ) application server is showed in the ComboBox .
    But when i create Java Test Client for some EJB and when i check " Connect Remote Application server" there is 2 comboboxes
    J2EE Application
    App Server Connection.
    first combo is ok there is EJB applicaiton
    Secound is empty .. but i Have App Server.
    Another think is that when i create EJB 3.0 its BAD to see J2EE app it must be J EE 5 app or just Java EE app

  • Create PR Invalid System Attribute Runtime Exception

    Dear All,
    We have problem with our SRM System.
    It is connected to an ECC Backend, and we have successfully replicate material & vendor data.
    We also have successfully create shopping carts.
    Our problem is when ANY USER create Purchase Requisition through the following menu:
    - Purchasing
    -- Purchasing Document
    --- Create Documents : Purchase Requsitions
    A windows with our correct backend system appear.
    But, after we press continue, runtime error.
    The default-trace is below.
    We have checked the erronous object, which is:
    com.sap.pct.erp.buyer.13.change_pr_lean_new
    and it is already have SAP_ECC_Procurement as it's system properties.
    We currently assume that a processor object mis-reference to SAP_LocalSystem, but finding the object using Multiple propery changer with SAP_LocalSystem as property doesn't work.
    It's strange.
    Please help.
    Thanks
    Content pass of Application Integrator failed.
    Component Name:       com.sap.portal.appintegrator.sap.WebDynpro,
    Context Name (iView): pcd:portal_content/com.sap.pct/specialist/com.sap.pct.srm.srm70/com.sap.pct.srm.suite.fl_suite/com.sap.pct.srm.suite.fl_roles/com.sap.pct.srm.suite.ro_operationalpurchaser/fl_navi/com.sap.pct.erp.buyer.13.change_pr_lean_new,
    Top Layer:            WebDynpro/TopLayer,
    Producer ID (FPN):    null,
    System Alias:         D05CLNT320,
    [EXCEPTION]
    com.sapportals.portal.appintegrator.ApplicationIntegratorException: Unable to parse template '<System.Access.WAS.protocol>://<System.Access.WAS.hostname>/sap/bc/webdynpro/<WebDynproNamespace>/<WebDynproApplication>/;sap-ext-sid=<ESID[url_ENCODE]>?sap-ep-iviewhandle=007<ESID[HASH]>&sap-wd-configId=<WebDynproConfiguration>&sap-ep-iviewid=<IView.ShortID>&sap-ep-pcdunit=<IView.PCDUnit.ShortID>&sap-client=<System.client>&sap-language=<Request.Language>&sap-accessibility=<User.Accessibility[SAP_BOOL]>&sap-rtl=<LAF.RightToLeft[SAP_BOOL]>&sap-ep-version=<Portal.Version[url_ENCODE]>&sap-wd-tstamp=<$TimeStamp>&<ProducerInfo>&sap-explanation=<User.Explanation[SAP_BOOL]>&<StylesheetIntegration[IF_true PROCESS_RECURSIVE]>&<Authentication>&<DynamicParameter[PARAMETER_MAPPING PROCESS_RECURSIVE]>&<ForwardParameters[QUERYSTRING]>&<ApplicationParameter[PROCESS_RECURSIVE]>'; the problem occured at position 310. Cannot process expression <System.client> because Invalid System Attribute:
    System:    &#39;SAP_LocalSystem&#39;,
    Attribute: &#39;client&#39;.
         at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.processTemplate(AbstractIntegrationLayer.java:455)
         at com.sapportals.portal.appintegrator.layer.URLTemplateProcessLayer.processLayer(URLTemplateProcessLayer.java:33)
         at com.sapportals.portal.appintegrator.LayerProcessor.processActionPass(LayerProcessor.java:160)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doActionPass(AbstractIntegratorComponent.java:68)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doOnPOMReady(AbstractIntegratorComponent.java:54)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:396)
         at com.sapportals.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:252)
         at com.sapportals.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:368)
         at com.sapportals.portal.prt.pom.PortalNode.processEventQueue(PortalNode.java:799)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:652)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:523)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:412)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sapportals.portal.appintegrator.template_processor.TemplateParserException: Unable to parse template '<System.Access.WAS.protocol>://<System.Access.WAS.hostname>/sap/bc/webdynpro/<WebDynproNamespace>/<WebDynproApplication>/;sap-ext-sid=<ESID[url_ENCODE]>?sap-ep-iviewhandle=007<ESID[HASH]>&sap-wd-configId=<WebDynproConfiguration>&sap-ep-iviewid=<IView.ShortID>&sap-ep-pcdunit=<IView.PCDUnit.ShortID>&sap-client=<System.client>&sap-language=<Request.Language>&sap-accessibility=<User.Accessibility[SAP_BOOL]>&sap-rtl=<LAF.RightToLeft[SAP_BOOL]>&sap-ep-version=<Portal.Version[url_ENCODE]>&sap-wd-tstamp=<$TimeStamp>&<ProducerInfo>&sap-explanation=<User.Explanation[SAP_BOOL]>&<StylesheetIntegration[IF_true PROCESS_RECURSIVE]>&<Authentication>&<DynamicParameter[PARAMETER_MAPPING PROCESS_RECURSIVE]>&<ForwardParameters[QUERYSTRING]>&<ApplicationParameter[PROCESS_RECURSIVE]>'; the problem occured at position 310. Cannot process expression <System.client> because Invalid System Attribute:
    System:    &#39;SAP_LocalSystem&#39;,
    Attribute: &#39;client&#39;.
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processWholeTagExpression(TemplateProcessor.java:155)
         at com.sapportals.portal.appintegrator.template_processor.compiler.ProcessWholeTagExpressionAction.execute(ProcessWholeTagExpressionAction.java:16)
         at com.sapportals.portal.appintegrator.template_processor.compiler.ProcessTemplateAction.execute(ProcessTemplateAction.java:39)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processImpl(TemplateProcessor.java:401)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.process(TemplateProcessor.java:375)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.process(TemplateProcessor.java:387)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessorService.processTemplate(TemplateProcessorService.java:54)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessorService.processTemplate(TemplateProcessorService.java:107)
         at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.processTemplate(AbstractIntegrationLayer.java:441)
         ... 30 more
    Caused by: com.sapportals.portal.appintegrator.template_processor.context.ContextException: Invalid System Attribute:
    System:    &#39;SAP_LocalSystem&#39;,
    Attribute: &#39;client&#39;.
         at com.sapportals.portal.appintegrator.template_processor.context.SystemEP6Wrapper.getTerminal(SystemEP6Wrapper.java:86)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processWholeTagExpression(TemplateProcessor.java:151)
         ... 38 more

    Hi,
    I am also facing the same issue. Could you please help me in resolving this issue.
    Issue Details:
    While creating PR (Using Harmonized role ERP/SRM), when i select ECC system and click on Continue button, i was facing Portal Runtime Error. When i check the log file, it was mentioned that the system SAP_Localsystem.  I was unable fix this issue.
    I would appreciate your help in this regard.
    Thanks,
    Gowrik

  • Problem creating EJB 3.0 Entity bean in JDeveloper

    Hello all,
    I trying to create my first entity bean in JDeveloper.
    JDevelper create the entity bean with the code below:
    package model;
    import java.io.Serializable;
    import javax.persistence.Entity;
    @Entity
    public class BatchSettlementT implements Serializable {
    public BatchSettlementT() {
    The problem is that JDeveloper don't find the import command import javax.persistence.Entity;
    What am I doing wrong?
    I'm using JDeveloper Studio Edition Version 10.1.3.1.0.3914.
    My libraries are:
    - TopLink
    - Oracle XML Parser 2
    - EJB 3.0
    - Toplink Essentials JPA
    - J2EE
    Thanks in advance.

    It's very strange, when I type import.javax. in my class there is no persistence package available, do you have any idea what's wrong.
    I did set the technology scope to EJB either.
    Thanks!

  • RMAN duplicate target database for standby from active fails to create newname for system tablespace/datafile

    When executing 'duplicate target database for standby from active'  the system tablespace/datafile (datafile 1)  is not cloned.  All other datafiles clone successfully.  The RMAN process aborts with the following errors while attempting to clone the system tablespace/datafile.
    ORA-19558: error de-allocating device
    ORA-19557: device error, device type: DISK, device name:
    ORA-17627: ORA-01041: internal error. hostdef extension doesn't exist
    ORA-17627: ORA-01041: internal error. hostdef extension doesn't exist
    ORA-03135: connection lost contact
    Here are the details:
    Primary is 11.2.0.2 RAC database  on an Exadata platform
    Standby is 11.2.0.2 Single Instance database (same patch level as primary) on a Red Hat Linux box
    This is an ASM to ASM duplication.
    This is not unique to this database.  We tried another database and go the same behavior - all datafiles clone successfully with the exception of the system tablespace/datafile.
    We have traced the RMAN execution and it seems to fail when it is trying to assign a NEWNAME to the system tablespace/datafile.
    We even issued an explicit SET NEWNAME command but RMAN ignored it.
    We also shutdown the primary and started is up in mount mode thinking that something had ahold of the System Tablespace/datafile.
    We also opened up the network firewall to allow permit any,any traffic.
    We increased the max_server_processes
    and added TCP.NODELAY=yes to the sqlnet.ora file.
    There seems to be some artifact present in our Primary System tablespace/data file that is preventing it form being cloned.
    checked all alert files grid, asm,  and dbhome - no abnormal messages.
    We are in the process of restoring the database from a backup but we would prefer to get this working using the 'Active Database' methodology

    I successfully created the standby database using RMAN backup and recovery.
    I started the managed recovery.  Archive logs are being sent from the primary to the standby ( I can see them in ASM), but the standby is not applying them.
    I get the following messages in the standby alert log...
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:19:58 2013
    Using STANDBY_ARCHIVE_DEST parameter default value as USE_DB_RECOVERY_FILE_DEST
    Using STANDBY_ARCHIVE_DEST parameter default value as USE_DB_RECOVERY_FILE_DEST
    Tue Nov 26 16:20:01 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:11 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:22 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:32 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    I don't see any MRP processes:
    select process,
    status,
        thread#,
        sequence#,
       block#,
      blocks
      7     from v$managed_standby;
    PROCESS   STATUS          THREAD#  SEQUENCE#     BLOCK#     BLOCKS
    ARCH      CLOSING               2     154363          1        132
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    RFS       IDLE                  0          0          0          0
    RFS       IDLE                  1     145418        121          1
    RFS       IDLE                  0          0          0          0
    PROCESS   STATUS          THREAD#  SEQUENCE#     BLOCK#     BLOCKS
    RFS       IDLE                  0          0          0          0
    12 rows selected.
    SQL>  SELECT THREAD#, SEQUENCE#, APPLIED FROM V$ARCHIVED_LOG;
       THREAD#  SEQUENCE# APPLIED
             2     154356 NO
             2     154357 NO
             1     145411 NO
             2     154358 NO
             2     154360 NO
             2     154361 NO
             1     145414 NO
             1     145415 NO
             2     154362 NO
             2     154363 NO
             1     145416 NO
    11 rows selected.
    I do have the archive logs that cover sequences 154158-154257
    Crosschecked 38 objects
    Crosschecked 62 objects
    Finished implicit crosscheck backup at 26-NOV-13
    Starting implicit crosscheck copy at 26-NOV-13
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    Crosschecked 2 objects
    archived log file name=+RECO_XORA/nmuasb00/archivelog/2013_11_26/thread_2_seq_154377.344.832521989 RECID=29 STAMP=832521990
    validation succeeded for archived log
    archived log file name=+RECO_XORA/nmuasb00/archivelog/2013_11_26/thread_2_seq_154378.346.832521991 RECID=31 STAMP=832521993
    Crosschecked 31 objects

  • Failed to create configuration database on Sharepoint Foundation 2010 install under Windows 7

    Configuration Failed
    Failed to create the configuration database.
    An exception of type System.IO.FileNotFoundException was thrown. Additional exception information:could not load file or assembly 'Microsoft.IdentityModel, version = 3.5.0.0,culture=neutral, PublicKey Token=31bf3856ad364e35' or one of its dependencies. The
    system cannot find the files specified.
    I already installed microsoft sharepoint foundation 2010 but I got the error as per above.How to solve this problem?

    Hi,
    Also check out Bill Baer's post:
    Common Microsoft SharePoint Server 2010 Installation Issues and Resolutions
    http://blogs.technet.com/b/wbaer/archive/2009/12/11/common-microsoft-sharepoint-server-2010-installation-issues-and-resolutions.aspx
    Thanks.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Sharepoint server 2013 configuration issue - failed to create configuration database

    Hi All,
    I have installed the SharePoint server 2013. After installing the SharePoint products, the configuration stops at failure of creating configuration database.
    Some system configuration & info:
    - 1 Domain controller server run Active Directory services on Windows server 2008 R2 SP1 (PC1 with name DC.Brainfiniti.com)
    - 1 Server which is used for installing Sharepoint server 2013 and MS SQL server 2008 R2 SP1 (PC2 with name App.Brainfiniti.com)
    - All of PCs were satisfied the requirement of Sharepoint server 2013
    - Firewall turned off & No antivirus tool was installed.
    - During installing of Sharepoint, choose "Complete" option: Farm mode and use SQL Server instead of SQL Express.
    - During configuration, created a new farm with a domain user account.
    - Use domain account to log on and install, configure in Sharepoint & SQL server (PC2)
    ATTEMPTS:
    1. Tried install and set up all of steps with just 1 account - domain administrator.
    2. Tried with separate domain account:
    - SQL Service account use for:
    + Install SQL server 2008
    + Connect all SQL services
    + Admin for SQL server
    - Setup account use for:
    + Member of local administrator group in PC2
    + Install Sharepoint
    + Run Configuration wizard
    + Was granted permission in SQL database: dbcreator, securityadmin, sysadmin and deselect serveradmin role.
    + Was choose for the database account in configuration database step
    Also tried with SQL service account in this step.
    3. Tried with Standalone mode for Sharepoint installing
    4. Trie with domain name: Brainfiniti.local
    5. Tried with some another solution from topic relate to database configuration in our community but not successful.
    But all attempts are failed at this configuration database step :'(
    Please correct me if I am going wrong by missing something or do I need to start/install some services.
    Screenshot Attached
    Sorry! Cannot add screenshot because my account is still not verified. Will add later.
    LOG ENTRY:
    01/23/2013 06:58:28  1  INF        Entering function CreateCentralAdministrationSiteForm.CreateCentralAdministrationSiteFormInitializeBeforeShow
    01/23/2013 06:58:28  1  INF          Found a task by the name of adminvs in the task collection
    01/23/2013 06:58:28  1  INF          Entering function TaskCommon.GenerateRandomUnUsedPort
    01/23/2013 06:58:28  1  INF            Entering function TaskCommon.EnsureIIs
    01/23/2013 06:58:28  1  INF              Entering function PreRequisiteChecks.IsIisInstalled
    01/23/2013 06:58:28  1  INF                Entering function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF                  Version of IIS is 7
    01/23/2013 06:58:28  1  INF                Leaving function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF              Leaving function PreRequisiteChecks.IsIisInstalled
    01/23/2013 06:58:28  1  INF              Entering function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF                Version of IIS is 7
    01/23/2013 06:58:28  1  INF              Leaving function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF              Entering function ServiceHelper.Start
    01/23/2013 06:58:28  1  INF                Trying to start service W3SVC and waiting 180 sec to do so
    01/23/2013 06:58:28  1  INF                service W3SVC is Running, nothing to do
    01/23/2013 06:58:28  1  INF                starting service W3SVC (it may already be started)
    01/23/2013 06:58:28  1  INF              Leaving function ServiceHelper.Start
    01/23/2013 06:58:28  1  INF            Leaving function TaskCommon.EnsureIIs
    01/23/2013 06:58:28  1  INF            Trying to see if port 40993 is free on machine APP.  Min port we will try is 1024, Max port we will try is 49151
    01/23/2013 06:58:30  1  INF            A SocketException was thrown with
    SocketError ConnectionRefused
    01/23/2013 06:58:30  1  INF            Connect has been refused for port 40993, so we will consider this a free port
    01/23/2013 06:58:30  1  INF            Have not found a free port yet.  Number of tries is 1.  Min port we will try is 1024, Max port we will try is 49151
    01/23/2013 06:58:30  1  INF            Adding port 40993 to the exclusion list so it is not chosen again during this run
    01/23/2013 06:58:30  1  INF          Leaving function TaskCommon.GenerateRandomUnUsedPort
    01/23/2013 06:58:30  1  INF        Leaving function CreateCentralAdministrationSiteForm.CreateCentralAdministrationSiteFormInitializeBeforeShow
    I just post a part of its logs which contain "error" string because it's too long.
    According this log, there is a error in port connection but i've turned firewall off ???
    Please help me with this mix up :'(
    p/s: sorry for my English!
    Thanks,
    Hien Hoang

    Below is the logs entry with "ERR" marked line:
    01/23/2013 07:03:17  9  INF                    Now joining to farm at server app.brainfiniti.com database SharePoint_Config
    01/23/2013 07:04:12  9  ERR                    Task configdb has failed with an unknown exception
    01/23/2013 07:04:12  9  ERR                    Exception: System.Security.Principal.IdentityNotMappedException: Some or all identity references could not
    be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                      Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                        Resource id to be retrieved is ExceptionInfo for language English (United States)
    01/23/2013 07:04:12  9  INF                        Resource retrieved id ExceptionInfo is An exception of type {0} was thrown. 
    Additional exception information: {1}
    01/23/2013 07:04:12  9  INF                      Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                    Leaving function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  INF                      Entering function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                        Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                          Resource id to be retrieved is ExceptionInfo for language English (United
    States)
    01/23/2013 07:04:12  9  INF                          Resource retrieved id ExceptionInfo is An exception of type {0} was thrown. 
    Additional exception information: {1}
    01/23/2013 07:04:12  9  INF                        Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                      Leaving function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                    Leaving function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  ERR                    An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception
    information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  INF                    Entering function TaskBase.OnTaskStop
    01/23/2013 07:04:12  9  INF                      Creating the OnTaskStop event for task configdb
    01/23/2013 07:04:12  9  ERR                      Task configdb has failed
    01/23/2013 07:04:12  9  INF                      friendlyMessage for task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  9  INF                      debugMessage for task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                      Entering function TaskBase.FireTaskStateChanged
    01/23/2013 07:04:12  9  INF                        Firing the OnTaskStateChanged event for task configdb
    01/23/2013 07:04:12  9  INF                        Entering function TaskDriver.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                            Resource id to be retrieved is ConfigurationDatabaseTaskDisplayName
    for language English (United States)
    01/23/2013 07:04:12  9  INF                            Resource retrieved id ConfigurationDatabaseTaskDisplayName
    is configuration database
    01/23/2013 07:04:12  9  INF                          Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                          Received an TaskStateEventHandler event.  task:configdb TaskBase.State:stopped
    01/23/2013 07:04:12  9  INF                          Entering function TasksQueue.IncrementTaskFailed
    01/23/2013 07:04:12  9  INF                            Incremented the number of tasks failed to 1
    01/23/2013 07:04:12  9  INF                          Leaving function TasksQueue.IncrementTaskFailed
    01/23/2013 07:04:12  9  INF                          Task configdb has stopped and failed.  Total failed is now 1
    01/23/2013 07:04:12  9  INF                        Leaving function TaskDriver.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                        Entering function PsconfigBaseForm.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Invoking the UI thread with the task state chagne event
    01/23/2013 07:04:12  1  INF                          Entering function ConfigurationProgressForm.InvokeTaskStateEventHandler
    01/23/2013 07:04:12  1  INF                            Received an TaskStateEventHandler event.  task:configdb
    TaskBase.State:stopped TaskBase.TaskResultconfigdb
    01/23/2013 07:04:12  1  INF                            Acquiring the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Releasing the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Acquiring the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Releasing the reader lock to retrieve the state
    01/23/2013 07:04:12  1  ERR                            Task configdb has stopped and failed.  Total failed
    is now 1
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    disconnect
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter disconnect in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    connect
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter connect in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    create
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter create in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  1  INF                              Resource id to be retrieved is ConfigurationDatabaseTaskCreateFailConfigDisplayLabel
    for language English (United States)
    01/23/2013 07:04:12  1  INF                              Resource retrieved id ConfigurationDatabaseTaskCreateFailConfigDisplayLabel
    is Failed to create the configuration database.
    01/23/2013 07:04:12  1  INF                            Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  1  INF                            Updating the task label below the progress bar Failed to
    create the configuration database.
    01/23/2013 07:04:12  1  INF                            Entering function FormParameterCollection.Add
    01/23/2013 07:04:12  1  INF                            Leaving function FormParameterCollection.Add
    01/23/2013 07:04:12  1  INF                            Last message from task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Updating the task additional notification information below
    the progress bar An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  1  INF                          Leaving function ConfigurationProgressForm.InvokeTaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Sleeping an extra 1 ms so things don't go too fast for the user for this
    task
    01/23/2013 07:04:12  1  INF                          Not running in high contrast, so we will paint the background with our
    trademarked image
    01/23/2013 07:04:12  9  INF                        Leaving function PsconfigBaseForm.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                      Leaving function TaskBase.FireTaskStateChanged
    01/23/2013 07:04:12  9  INF                    Leaving function TaskBase.OnTaskStop
    01/23/2013 07:04:12  9  INF                  Leaving function TaskThread.ExecuteTask
    01/23/2013 07:04:12  4  INF                  Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  INF                    Resource id to be retrieved is ConfigurationDatabaseTaskDisplayName for language English (United States)
    01/23/2013 07:04:12  4  INF                    Resource retrieved id ConfigurationDatabaseTaskDisplayName is configuration database
    01/23/2013 07:04:12  4  INF                  Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  ERR                  Task configuration database failed, so stopping execution of the engine
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key disconnect
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter disconnect in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key connect
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter connect in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key create
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter create in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  INF                    Resource id to be retrieved is ConfigurationDatabaseTaskCreateFailConfigDisplayLabel for language English
    (United States)
    01/23/2013 07:04:12  4  INF                    Resource retrieved id ConfigurationDatabaseTaskCreateFailConfigDisplayLabel is Failed to create the configuration
    database.
    01/23/2013 07:04:12  4  INF                  Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  ERR                  Failed to create the configuration database.
    An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  4  INF                  Entering function TaskDriver.NotifyTaskSummary

  • Problem in Creating a JDBC System - SQL Server

    Hi All
    I failed in creating a JDBC System(SQL Server).  I am using SAP EP 7.0 SP 9.  I tried to create the JDBC system with the following properties:
    I am listing them Category wise:
    Connection Properties:
    1. Connection Timeout: 300
    2. Connection URL: jdbc:sap.sqlserver://<server name> : <port name>; DatabaseName=master
    3. Driver Class Name: com.sap.portals.jdbc.sqlserver.SQLServerDriver
    4. Validate Connection: Yes
    UserManagement Properties:
    5. User Mapping Type: admin;user
    Please help me out in making this work. And let me know if any changes to incorporated.
    Regards,
    Vijay.

    Hi vijay,
    I have tried this thing sometime back. But when i create a JDBC system, I never give the <b>Connection Timeout</b> and change the<b> Validate Connection</b> from No to Yes. I just give the <b>Connection URL</b> and the <b>Driver Class Name</b> in the Connection Properties dropdown.
    Try making these changes and check whether the user mapping is done correctly. Also check whether the Connection URL and the Driver Class Name are correct or not. Have a look at the following link:
    <a href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/VC/JDBC%2bConnection%2bSetup">https://www.sdn.sap.com/irj/sdn/wiki?path=/display/VC/JDBC%2bConnection%2bSetup</a>
    Let me know if this works.
    Bye
    Ankur
    Reward points if it helps!!

Maybe you are looking for