Configuring &Implementing custom UUP  in Weblogic portal server 10.2

Hi,
Please try to post some reply..it's urgent.............
I'm trying to implement a custom UUP for external RDBMS(Oracle) in Weblogic 102. protal server.
when I'm trying to publish the application it's giving the following error message:
<Dec 19, 2008 12:47:11 PM IST> <Error> <Lease> <BEA-403300> <JNDI entry of timer/PortalTimer was not found in JNDI tree. Message is: javax.naming.NameNotFoundException: While trying to look up timer/PortalTimer in java:comp/env.; remaining name 'timer/PortalTimer'.
javax.naming.NameNotFoundException: While trying to look up timer/PortalTimer in java:comp/env.; remaining name 'timer/PortalTimer'
     at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1138)
     at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:143)
     at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
     at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:367)
     at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyContextWrapper.java:45)
     Truncated. see log file for complete stacktrace
>
My connection methods are written here:
Note: I've configured a datasource in the weblogic servre admin console named: IBDataSource JNDI name : jdbc/IBDS.
Also i've gone through the documentation and changed the p13n-profile-config.XML accordingly and made a new property set in the Datasync project with the required property neames.
my p13n-profile-config.xml entry looks like this....
<property-adapter>
     <name>myuup</name>
     <property-mapping>myuup</property-mapping>
     <ejb-jndi>UUPEjb.jar#CustomEntityPropertyManager</ejb-jndi>
     <adapter-property>
          <name>IBDataSource</name>
          <value>jdbc:bea:oracle://192.168.0.112:1521</value>
     </adapter-property>
     <adapter-property>
     <name>UUPExampleCache</name>
     <value>UUPExampleCache</value>
     </adapter-property>
</property-adapter>
protected Connection getConnection() {
          try {
               DataSource dataSource = getDataSource();
               return dataSource.getConnection();
          } catch (SQLException ex) {
               throw new ConfigurableEntitySystemException(ex);
     protected DataSource getDataSource(){
          DataSource ds = null;
          try {
               ds = (DataSource) getEnvironmentProperty(DATA_SOURCE);
          } catch (Exception ex) {
               throw new ConfigurableEntitySystemException(ex);
          return ds;
     protected final Object getEnvironmentProperty(String propertyName) throws NamingException {
          Object envProperty = null;
          InitialContext jndiContext = new InitialContext();
          String lookupName = ( (new StringBuffer("java:comp/env/")).append(propertyName) ).toString();
          System.out.println("The lookup name is" + lookupName );
          envProperty = jndiContext.lookup(lookupName);
          System.out.println("The value of envProperty is " + envProperty);
          return envProperty;
My ejb.jar.xml entry contains:
<resource-ref>
<res-ref-name>jdbc/IBDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
and Weblogic-ejb-jar.xml entry contains:
<resource-description>
<res-ref-name>jdbc/IBDS</res-ref-name>
<jndi-name>jdbc/IBDS</jndi-name>
</resource-description>
When we try to access the propertyset in the portal admin console the following error message is given:----
<Dec 19, 2008 5:38:59 PM IST> <Error> <PortalAdminTools> <BEA-415125> <A ToolsException occured trying to get the resources for com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM:RecentFavoriteItems.
com.bea.portal.tools.common.exceptions.ToolsException: com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM
     at com.bea.portal.tools.ugm.controls.ProfileManagerControlImpl.getPropertyValues(ProfileManagerControlImpl.java:544)
     at com.bea.portal.tools.ugm.controls.ProfileManagerControlBean.getPropertyValues(ProfileManagerControlBean.java:534)
     at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.getItems(ItemService.java:515)
     at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.addItem(ItemService.java:447)
     at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.addRecentItem(ItemService.java:226)
     Truncated. see log file for complete stacktrace
com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM
     at com.bea.p13n.controls.profile.PropertyControlImpl.getProperty(Unknown Source)
     at com.bea.p13n.controls.profile.PropertyControlBean.getProperty(Unknown Source)
     at com.bea.portal.tools.ugm.controls.ProfileManagerControlImpl.getPropertyValues(ProfileManagerControlImpl.java:512)
     at com.bea.portal.tools.ugm.controls.ProfileManagerControlBean.getPropertyValues(ProfileManagerControlBean.java:534)
     at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.getItems(ItemService.java:515)
     Truncated. see log file for complete stacktrace
java.rmi.RemoteException: EJB Exception: ; nested exception is:
     com.bea.p13n.usermgmt.profile.ProfileSystemException: ClassCastException trying to instantiate [UUPEjb.jar#CustomEntityPropertyManager] as a [EntityPropertyManager].
     at weblogic.ejb.container.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:101)
     at weblogic.ejb.container.internal.BaseRemoteObject.handleSystemException(BaseRemoteObject.java:830)
     at weblogic.ejb.container.internal.BaseRemoteObject.handleSystemException(BaseRemoteObject.java:779)
     at weblogic.ejb.container.internal.BaseRemoteObject.postInvoke1(BaseRemoteObject.java:500)
     at weblogic.ejb.container.internal.StatelessRemoteObject.postInvoke1(StatelessRemoteObject.java:57)
     Truncated. see log file for complete stacktrace
com.bea.p13n.usermgmt.profile.ProfileSystemException: ClassCastException trying to instantiate [UUPEjb.jar#CustomEntityPropertyManager] as a [EntityPropertyManager].
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.lookupPropertyManager(ProfileManagerImpl.java:1156)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerByRef(ProfileManagerImpl.java:1098)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getPropertyMap(ProfileManagerImpl.java:1286)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerRef(ProfileManagerImpl.java:1199)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManager(ProfileManagerImpl.java:1087)
     Truncated. see log file for complete stacktrace
java.lang.ClassCastException: com.coles.ecom.ib.uup.CustomEntityPropertyManager_qp0u4g_EOImpl
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.lookupPropertyManager(ProfileManagerImpl.java:1125)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerByRef(ProfileManagerImpl.java:1098)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getPropertyMap(ProfileManagerImpl.java:1286)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerRef(ProfileManagerImpl.java:1199)
     at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManager(ProfileManagerImpl.java:1087)
     Truncated. see log file for complete stacktrace
>
Edited by: user10728655 on Dec 19, 2008 4:09 AM

There isn't a specific list of pro's / con's. Here are a few of the factors.
a. Is this a custom UUP we are talking about or out of the box UUP? (determines effort time saved)
b. What other features of WLP will be used? Will say for e.g. entitlements be used , and is so will they be based on UUP properties ? will content selectors be used? will segments be used? What are you hoping to accomplish by using the UUP? (determines what benefits you get)
c. Are there any search related requirements based on the UUP (e.g. find all users with a UUP of country='US'?) How pure should your design be i.e. do you only interact with supported BEA API's or are you willing to go to the db directly , with the knowledge that future releases may cause your code to break? (UUP's arent good for searching , you can however go directly to db or use a custom UUP)
d. what sort of caching is possible for the data(i.e is the data very time sensitive or mostly static)? what sort of updates are done ? is it one property at a time or multiple properties? is the UUP read only?How much flexibility do you need with transactions? (UUP go well with non time sensitive data which isnt updated by means other than the UUP).
regards
deepak

Similar Messages

  • Weblogic portal server

    I already have a weblogic server installed in my system, I want to have weblogic portal server. If i download the weblogic portal server from www.oracle.com the available download is around 1Gb of size and it is bundled with a weblogic server. Is it possible to download the portal server part alone and integrate with my existing weblogic server?
    Thanks,
    Mahesh

    Here is the link for latest and greatest WLP 10.3.2 (around 1.0 GB File). This bundle/installer includes Weblogic Server, Portal Framework, Eclipse IDE. During installation, select custom option and make sure to select Samples check box for both Portal and Serve. By default if you select typical, it will NOT install Samples. WLS samples are good. So choose custom and install samples also.
    http://www.oracle.com/technology/software/products/wlp/index.html
    HTH
    Ravi Jegga

  • How we can reduce the star-up time of weblogic portal server

    weblogic portal server takes 8-10 minutes to start on portal server
    can anybody suggest any remedy by which I can cring down this startup time bye 3-4 minutes.
    Thanks
    Ashish

    The reason portal server takes so much time is because in the background its starting many services and waiting for them to start completely.
    The services are - Autonomy search engine, which has 4-5 compoments, if you are using pointbase then it will start pointbase DB.
    To reduce the startup time you can disable autonomy, similarly you can use oracle or some other DB.
    Server opens connections at startup according to whats defined in JDBC connection pool configuration, you can tune this too.

  • Error on running the .portal on the weblogic portal server 10.3.2 using jsf

    Hi,
    This are the below file that i have included in the project
    login.jspx
    <jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ice="http://www.icesoft.com/icefaces/component">
    <jsp:directive.page contentType="text/html;charset=utf-8" />
    <f:view>
    <ice:outputDeclaration doctypeRoot="HTML"
    doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN"
    doctypeSystem="http://www.w3.org/TR/html4/loose.dtd" />
    <html>
    <head>
    <title>ICEfaces,Login Portlet</title>
    <link rel="stylesheet" type="text/css"
    href="./xmlhttp/css/rime/rime.css" />
    </head>
    <body>
    <ice:portlet>
    <ice:outputText value="Welcome to ICEfaces." />
    <ice:form>
    <ice:outputText value="Username" />
    <ice:inputText id="name_t" value="#{Login.userName}"></ice:inputText>
    <ice:outputText value="Password"/>
    <ice:inputText id="password_t" value="#{Login.password}"></ice:inputText>
    <ice:commandButton action="#{Login.checkUserPass}" value="OK"></ice:commandButton>
    </ice:form>
    </ice:portlet>
    </body>
    </html>
    </f:view>
    </jsp:root>
    faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">
    <application>
    <view-handler>
    com.icesoft.faces.facelets.D2DFaceletViewHandler
    </view-handler>
    <locale-config>
    <supported-locale>de</supported-locale>
    <supported-locale>en</supported-locale>
    </locale-config>
    </application>
    <managed-bean>
    <managed-bean-name>Login</managed-bean-name>
    <managed-bean-class>com.pack.login.Login</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>userName</property-name>
    <property-class>java.lang.String</property-class>
    <value></value>
    </managed-property>
    <managed-property>
    <property-name>password</property-name>
    <property-class>java.lang.String</property-class>
    <value></value>
    </managed-property>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/login.jspx</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/success.iface</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>failure</from-outcome>
    <to-view-id>/failure.iface</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    portlet.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">
    <application>
    <view-handler>
    com.icesoft.faces.facelets.D2DFaceletViewHandler
    </view-handler>
    <locale-config>
    <supported-locale>de</supported-locale>
    <supported-locale>en</supported-locale>
    </locale-config>
    </application>
    <managed-bean>
    <managed-bean-name>Login</managed-bean-name>
    <managed-bean-class>com.pack.login.Login</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>userName</property-name>
    <property-class>java.lang.String</property-class>
    <value></value>
    </managed-property>
    <managed-property>
    <property-name>password</property-name>
    <property-class>java.lang.String</property-class>
    <value></value>
    </managed-property>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/login.jspx</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/success.iface</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>failure</from-outcome>
    <to-view-id>/failure.iface</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    Login.java
    package com.pack.login;
    import javax.faces.application.FacesMessage;
    import javax.faces.context.FacesContext;
    public class Login {
    public String getUserName() {
    return userName;
    public void setUserName(String userName) {
    this.userName = userName;
    public String getPassword() {
    return password;
    public void setPassword(String password) {
    this.password = password;
    private String userName;
    private String password;
    public String checkUserPass(){
    FacesContext facesContext = FacesContext.getCurrentInstance();
    if("icefaces".equals(getUserName()) && "icefaces".equals(getPassword())) {
    return"success";
    FacesMessage facesMessage = new FacesMessage(
    "You have entered an invalid user name and/or password");
    facesContext.addMessage("Login", facesMessage);
    return "failure";
    What are the classes or interfaces that we need to use to render the content and to the process the action in jsf-portlet + icefaces libraris + weblogic portal server 10.3.2
    I have created the .portal file and i have included the instance of the .portlet file in the portal page. When i run .portal file on the server it will throw the below exception.
    <Warning> <netuix> <BEA-423319> <A default JSP response character encoding was not found for webapp [Portal]. Defaulting to [UTF-8]. You can override this default response character encoding for all portals in netuix-config.xml or for each portal or desktop in each portal or desktop definition.>
    12, 2010 9:57:05 AM com.sun.faces.lifecycle.Phase doPhase
    SEVERE: JSF1054: (Phase ID: RENDER_RESPONSE 6, View ID: /login.jspx) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@18fddac]
    <Error> <netuix> <BEA-423405> <An exception [java.lang.NullPointerException] was thrown while rendering the content at [login.jspx].
    javax.faces.FacesException: java.lang.NullPointerException
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:128)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at com.bea.portlet.adapter.faces.FacesContentStubImpl.render(FacesContentStubImpl.java:354)
    at com.bea.netuix.servlets.controls.content.FacesContent.beginRender(FacesContent.java:424)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:485)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.NullPointerException
    at com.sun.faces.renderkit.RenderKitImpl.createResponseWriter(RenderKitImpl.java:188)
    at com.icesoft.faces.renderkit.D2DRenderKit.createResponseWriter(D2DRenderKit.java:87)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:194)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl.renderView(PortletViewHandlerImpl.java:257)
    Truncated. see log file for complete stacktrace
    >
    <Error> <netuix> <BEA-423137> <There was an error loading the requested URI /login.jspx.>
    Login Error opening /login.jspx.
    The source of this error is:
    javax.faces.FacesException: java.lang.NullPointerException
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:128)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at com.bea.portlet.adapter.faces.FacesContentStubImpl.render(FacesContentStubImpl.java:354)
    at com.bea.netuix.servlets.controls.content.FacesContent.beginRender(FacesContent.java:424)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:485)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:582)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:488)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:152)
    at com.bea.netuix.servlets.jsp.taglib.skeleton.Child.doTag(Child.java:63)
    at jsp_servlet._framework._skeletons._bighorn.__flowlayout._jspService(__flowlayout.java:175)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:408)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:318)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:502)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:429)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:148)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:168)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:465)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:291)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:231)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:216)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:275)
    at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:719)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
    at com.sun.faces.renderkit.RenderKitImpl.createResponseWriter(RenderKitImpl.java:188)
    at com.icesoft.faces.renderkit.D2DRenderKit.createResponseWriter(D2DRenderKit.java:87)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:194)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl.renderView(PortletViewHandlerImpl.java:257)
    at com.bea.portlet.adapter.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:77)
    at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:151)
    at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:151)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
    ... 71 more
    I have created the .portal file and i have included the instance of the .portlet file in the portal page. When i run .portal file on the server it will throw the below exception.
    <Warning> <netuix> <BEA-423319> <A default JSP response character encoding was not found for webapp [Portal]. Defaulting to [UTF-8]. You can override this default response character encoding for all portals in netuix-config.xml or for each portal or desktop in each portal or desktop definition.>
    12, 2010 9:57:05 AM com.sun.faces.lifecycle.Phase doPhase
    SEVERE: JSF1054: (Phase ID: RENDER_RESPONSE 6, View ID: /login.jspx) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@18fddac]
    <Error> <netuix> <BEA-423405> <An exception [java.lang.NullPointerException] was thrown while rendering the content at [login.jspx].
    javax.faces.FacesException: java.lang.NullPointerException
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:128)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at com.bea.portlet.adapter.faces.FacesContentStubImpl.render(FacesContentStubImpl.java:354)
    at com.bea.netuix.servlets.controls.content.FacesContent.beginRender(FacesContent.java:424)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:485)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.NullPointerException
    at com.sun.faces.renderkit.RenderKitImpl.createResponseWriter(RenderKitImpl.java:188)
    at com.icesoft.faces.renderkit.D2DRenderKit.createResponseWriter(D2DRenderKit.java:87)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:194)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl.renderView(PortletViewHandlerImpl.java:257)
    Truncated. see log file for complete stacktrace
    >
    <Error> <netuix> <BEA-423137> <There was an error loading the requested URI /login.jspx.>
    Login Error opening /login.jspx.
    The source of this error is:
    javax.faces.FacesException: java.lang.NullPointerException
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:128)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at com.bea.portlet.adapter.faces.FacesContentStubImpl.render(FacesContentStubImpl.java:354)
    at com.bea.netuix.servlets.controls.content.FacesContent.beginRender(FacesContent.java:424)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:485)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:326)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:582)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:488)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:152)
    at com.bea.netuix.servlets.jsp.taglib.skeleton.Child.doTag(Child.java:63)
    at jsp_servlet._framework._skeletons._bighorn.__flowlayout._jspService(__flowlayout.java:175)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:408)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:318)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:502)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:429)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:148)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:481)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:168)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:465)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:291)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:231)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:216)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:275)
    at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:719)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
    at com.sun.faces.renderkit.RenderKitImpl.createResponseWriter(RenderKitImpl.java:188)
    at com.icesoft.faces.renderkit.D2DRenderKit.createResponseWriter(D2DRenderKit.java:87)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:194)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl.renderView(PortletViewHandlerImpl.java:257)
    at com.bea.portlet.adapter.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:77)
    at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:151)
    at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:151)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
    ... 71 more
    Thanks in advance.

    First you install a JDK6 version after which you can install your WebLogic and Forms, Reports...
    A step-by-step example is presented here: http://middlewaremagic.com/weblogic/?p=7265
    Look in the 'Install WebLogic' section. Note that you probably do not have to create a separate user,
    also you can use HotSpot instead of JRockit.

  • Weblogic Portal Server interrupted abruptly error

    hi,
    i have an issue with weblogic portal server 9.2,
    At times my workshops get hang and i have to kill the weblogic portal server instance,
    the next time i start the workshop and try to start the weblogic portal server it gives error either that there is exclusive lock on the ear project or it says like the server was interrupted abruptly, and the server does not start,
    How do i solve such kind of issue, my server is not starting and i need to resolve such kind of error urgently,
    thanks in advance

    Hi,
    If the error is about the exclusive lock on the ear project it means you have made a lock on the resources in weblogic server admin console.You need to realase the lock from the console.
    Also if some unexpected error comes?
    Just apply the weblogic 9.2 patch before starting the workshop.You can find the patch at C:\bea92\workshop92\workshop4WP location.Run the WLWPatchInitialize.cmd script.
    This might be helpful for you.
    Thanks
    Bishnu

  • Weblogic Portal ( Server ) upgrade from 10.0 MP1 to 10.3.5

    HI,
    We are currently attempting to upgrade WebLogic Portal Server in development environment and having problems when i run the installer. ( WLS1035_upgrade_generic.jar ).
    I'm attempting this upgrade in Windows 7 professional environment ( 64 bit )  and it is a Windows VM with in a MAC OS X.
    Problem  : At the screen where it asks to Choose Middleware Home Type  ---> click next   --->  it shows error message saying Product is not Installed.
    Environment   :    Upgrade of WebLogic 10.0 MP1 portal server ( JDK 1.5_30 )  on a Windows Virtual Machine running using Parallels Desktop software
    Existing attempts  :    
    I went through the forums and tried
    -  Oracle's Minimum Technical Requirements says that i need to have JDK 1.6_24 and have installed JDK  1.6.0_35. ( jdk-6u35-windows-x64.exe ) .
       I'm currently  running the setup from command prompt using this version of Java.
    -  Tried using BEA WebLogic smart upgrade. But it is not recognising our Oracle Support Login  credentials. I tried doing this in offline mode having the above .jar and .zip  file patch in the correct directory but its not recognising.
    Weblogic home directory is c:\bea and it has got all the directories inside it  -   i don't understand the reason why installer is not able to identify the existing WLS installation.
    I would appreciate help around this as i'm not sure what else to try ?
    Cheers,

    I am not sure what you are doing is supported. You cannot upgrade a 10.0 to a 10.3.5 the way you are trying. The updater may be used to upgrade froma 10.3.x to 10.3.5 i believe. Check this out Upgrading WebLogic Server 9.x or 10.0 Application Environments to 10.3.5

  • Vista OS vs Weblogic portal server

    Hello,
    I am a bit surprised to find my OS [MS Vista Home ] is not compatable for the Weblogic portal server.
    I have weblogic 8.14 portal server running on my machine, I deployed a sample portal application of my own. The problem arises when I redeploy/deploy or when I run the application it throws exception of "***** Assertion Failed ******" 'illegal state transition from 3 to 2 '.
    Any ideas why this exception occured? Is this really due to Vista OS? I havent seen that Weblogic Family is available for Vista OS. Any comments on this is highly appreciated.
    Thank you,
    BA S

    Supported platform information for all of BEA's products can be found here.
    http://e-docs.bea.com/platform/suppconfigs/index.html

  • Weblogic portal server as web server

    How can i use weblogic portal server as my web server and another weblogic domain as my application server and link between the two? I mean the frontend of the application on the portal server which interacts with the backend which is on the application server?

    please refer to the following link on how to set up weblogic as web server.
    http://e-docs.bea.com/wls/docs81/adminguide/web_server.html

  • Does Weblogic Portal Server provides caching services and multilingual support

    I wanted to know whether Weblogic Portal Server 8.1 has got the facility for caching
    services and multilingual support?

    is this JSF-portlet.jar bridge file used to create .portlet file from the JSF file so that the portlet file may be added in the portal?
    And if you were able to solve the issue by removing the bridge jar file itself, how does that help? if that is the one that would help in creating portlets.
    If anyone have been able to create a .portlet file from JSF and deploy in Weblogic 8.1, let me know.
    Thanks,
    -RAJIV.

  • Porting portlets from WebSphere to Weblogic Portal Server

    How to Porting portlets from WebSphere to Weblogic Portal Server can any one help
    me by providing the suitable steps , or material to know how to go about it.
    Thanks in advance

    To be in same page, iam running the client program using the IBM jre and using all the websphere client jars set in classpath. This program conatins intial context factory as "com.ibm.websphere.naming.WsnInitialContextFactory" and provider url as "iiop://hostname:portnumber" it contacts the EJB bean method which is hosted on the weblogic server on the "hostname" machine. When it tries to contact i get the errror as
         "javax.naming.NameNotFoundException: Context: , name: java.iecc.env.ejb.elf.client_new(My JNDI name): First component in name java.iecc.env.ejb.elf.client_new not found. [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]"

  • Clustering of Weblogic Portal Server 10.3

    Hello Everyone,
    Can someone please let me know the implementation steps to configure weblogic portal cluster enviromnent in 2 physical machines..

    Thanks Jay & Ravi but i am still having issues with the clustering, Let me explain:
    I have followed all the steps mentioned in link(http://jaysensharma.wordpress.com/2010/01/08/struts-2-0-in-weblogic/#comment-136). The admin server, Managed server 1 are in Machine A and Managed server 2 is in Machine B. I have also configured Node Manager in both the machines and both are reachable. I was able to start Managed server 1(which resides in Machine A) but while starting Managed Server 2(which resides in Machine B). I am getting the following exceptions:
    <Feb 12, 2010 2:34:37 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for CR376251 Wed Aug 06 09:19:34 PDT 2008
    WebLogic Server Temporary Patch for CR371247 Sat Aug 09 20:10:38 PDT 2008
    WebLogic Server Temporary Patch for CR377673 Tue Aug 12 20:39:50 EDT 2008
    WebLogic Server Temporary Patch for CR377673 Tue Aug 12 20:39:50 EDT 2008
    WebLogic Server Temporary Patch for CR376759 Thu Aug 14 14:53:02 PDT 2008
    WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967 >
    <Feb 12, 2010 2:34:43 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Feb 12, 2010 2:34:43 PM EST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Feb 12, 2010 2:34:44 PM EST> <Notice> <Log Management> <BEA-170019> <The server log file /opt/portal10gR3/user_projects/domains/mydomain/servers/test_srv02/logs/test_srv02.log is opened. All server side log events will be written to this file.>
    <Feb 12, 2010 2:34:53 PM EST> <Error> <Security> <BEA-090870> <The realm "myrealm" failed to be loaded: weblogic.security.service.SecurityServiceException: java.lang.NoClassDefFoundError: com/pointbase/session/sessionManager.
    weblogic.security.service.SecurityServiceException: java.lang.NoClassDefFoundError: com/pointbase/session/sessionManager
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(Unknown Source)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(Unknown Source)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(Unknown Source)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(Unknown Source)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(Unknown Source)
    Truncated. see log file for complete stacktrace
    java.lang.NoClassDefFoundError: com/pointbase/session/sessionManager
    >
    <Feb 12, 2010 2:34:53 PM EST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Feb 12, 2010 2:34:53 PM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090399]Security Services Unavailable
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(Unknown Source)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(Unknown Source)
    at weblogic.security.service.SecurityServiceManager.initialize(Unknown Source)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Feb 12, 2010 2:34:53 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Feb 12, 2010 2:34:53 PM EST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Feb 12, 2010 2:34:53 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>

  • Not able to start weblogic portal server

    I installed WebLogic Portal 10.3 server on linux. After creating a domain when I start weblogic I get following exception:
    <Jan 12, 2012 12:46:57 PM IST> <Error> <Security> <BEA-000000> <[Security:090759]A SQLException occurred while retrieving password information
    java.sql.SQLSyntaxErrorException: Schema 'WEBLOGIC' does not exist
    at org.apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
    at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
    at org.apache.derby.client.am.Connection.prepareStatement(Unknown Source)
    at >weblogic.security.providers.authentication.DBMSSQLReadOnlyDatabaseConnectionImpl.getPreparedStatement(DBMSSQLReadOnlyDatabaseConnectionImpl.java:37)
    at weblogic.security.providers.authentication.shared.DBMSSQLRuntimeQueryImpl.passwordStringQuery(DBMSSQLRuntimeQueryImpl.java:82)
    Truncated. see log file for complete stacktrace
    Caused By: org.apache.derby.client.am.SqlException: Schema 'WEBLOGIC' does not exist
    at org.apache.derby.client.am.Statement.completeSqlca(Unknown Source)
    at org.apache.derby.client.net.NetStatementReply.parsePrepareError(Unknown Source)
    at org.apache.derby.client.net.NetStatementReply.parsePRPSQLSTTreply(Unknown Source)
    at org.apache.derby.client.net.NetStatementReply.readPrepareDescribeOutput(Unknown Source)
    at org.apache.derby.client.net.StatementReply.readPrepareDescribeOutput(Unknown Source)
    Truncated. see log file for complete stacktrace>
    <Jan 12, 2012 12:46:57 PM IST> <Critical> <Security> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    <Jan 12, 2012 12:46:57 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time >the updated boot identity file is used to start the server, these new values are encrypted.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. see log file for complete stacktrace
    Caused By: javax.security.auth.login.LoginException: java.sql.SQLSyntaxErrorException: Schema 'WEBLOGIC' does not exist
    at weblogic.security.providers.authentication.shared.DBMSAtnLoginModuleImpl.authenticateDBMS(DBMSAtnLoginModuleImpl.java:696)
    at weblogic.security.providers.authentication.shared.DBMSAtnLoginModuleImpl.login(DBMSAtnLoginModuleImpl.java:271)
    at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
    Truncated. see log file for complete stacktrace>I know it means WEBLOGIC schema does not exist. But don't know how can I create it?
    The steps I followed:
    1. Run ./config.sh from wlserver_10.3/common/bin to create new domain.
    2. Run ./craete_db.sh from newly created domain folder.
    3. Run ./startWeblogic.sh
    Edited by: 907606 on Jan 12, 2012 1:58 AM

    Ravi Jegga wrote:
    Hi
    Its been a while I have not worked on Weblogic Portal. BUT after creating the Portal Domain using config wizard, why did you again run create_db scripts. As far as I know, this is NOT required. Is your intention to change the portal db schema to some other database like to Oracle etc. Then why don't you do that at the time of domain creation itself. Give those DB details. create_db is if you ever want to use any other db to have your portal schemas. After doing this, you also should run one more .sql file in one of the folders under your domain root folder structure (something like yourdomain/security/SQLAuthenticator.sql).
    Now, the main point is, what ever database you use, when you run Config Wizard and choose Portal Domain facet and click next, next, at one of the screens, it shows all the Portal DataSources details (have default db or modify to use oracle etc). BUT the main thing is in next screen, when you test all these DataSources, there should be button in the bottom like Run Scripts. Make sure to hit this button. Because this will create and run full portal schema scripts. You cannot miss this. Complete the domain creation and start the domain and try again.
    Thanks
    Ravi JeggaHow can I run that extra .sql file? The steps I follow in creating domain is as follows:
    Steps:
    1. Select Create new weblogic domain.
    2. Select Choose Weblogic Platform componenets.
    3. Select Basic WebLogic Server Domain - 10.3.4.0 [wlserver_10.3] and WebLogic Portal - 10.3.4.0.
    4. Enter domain name.
    5. Enter username/password.
    6. Select development mode.
    7. Select JRockit SDK 1.6.0_22 @ /usr/local/Oracle/jrockit_160_22_D1.1.1-3
    8. Got following on screen:
    Edit the configuration of JDBC data sources. A data source contains a pool of database connections. Applications look up a data source in the JNDI tree, request a connection, use it, and
    return it to the connection pool.
    | Name |
    _|__________________________|
    1| cgDataSource |
    2| portalDataSourceAlwaysXA |
    3| portalDataSource |
    4| p13nDataSource |
    5| cgDataSource-nonXA |
    6| portalDataSourceNeverXA |
    Use above value or select another option:
    1 - Modify
    2 - Discard Changes
    Enter option number to select OR [Exit][Previous][Next]>Done nothing and go to next screen.
    9. Following appears:
    If your connections tested OK, you may now run database scripts. For each JDBC data source, you will select the desired database loading options and database version.
    1|p13nDataSource
    2|portalDataSource
    3|portalDataSourceAlwaysXA
    4|portalDataSourceNeverXA
    5|cgDataSource
    6|cgDataSource-nonXA
    ->7|Skip JDBC Configuration
    Enter index number to select OR [Exit][Previous][Next]> Here selected every datasource one by one and loaded their database.
    10. Select Administration Server.
    11. Following screen:
    Each WebLogic Server domain must have one Administration Server. The Administration Server is used to perform administrative tasks.
    | Name | Value |
    _|__________________|_____________________|
    1| *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3| Listen port: | 7001 |
    4| SSL listen port: | N/A |
    5| SSL enabled: | false |
    Use above value or select another option:
    1 - Modify "Name"
    2 - Modify "Listen address"
    3 - Modify "Listen port"
    4 - Modify "SSL enabled"     Kept all things default and gone to next screen.
    12. Go to domain directory and run ./startWebLogic.sh.
    13. Got following exception:
    <Jan 13, 2012 10:03:00 AM IST> <Error> <Security> <BEA-090870> <The realm "myrealm" failed to be loaded: weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: ><openjpa-1.1.1-SNAPSHOT-r422266:965591 fatal internal error> org.apache.openjpa.util.InternalException: There was an error when invoking the static getInstance method on the named factory class >"kodo.jdbc.kernel.KodoJDBCBrokerFactory". See the nested exception for details..
    weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: <openjpa-1.1.1-SNAPSHOT-r422266:965591 fatal internal error> org.apache.openjpa.util.InternalException: There >was an error when invoking the static getInstance method on the named factory class "kodo.jdbc.kernel.KodoJDBCBrokerFactory". See the nested exception for details.
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:341)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:220)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1785)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    Truncated. see log file for complete stacktrace
    Caused By: com.bea.common.engine.ServiceInitializationException: <openjpa-1.1.1-SNAPSHOT-r422266:965591 fatal internal error> org.apache.openjpa.util.InternalException: There was an error when invoking the static >getInstance method on the named factory class "kodo.jdbc.kernel.KodoJDBCBrokerFactory". See the nested exception for details.
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:365)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:46)
    Truncated. see log file for complete stacktrace
    Caused By: <openjpa-1.1.1-SNAPSHOT-r422266:965591 fatal internal error> org.apache.openjpa.util.InternalException: There was an error when invoking the static getInstance method on the named factory class >"kodo.jdbc.kernel.KodoJDBCBrokerFactory". See the nested exception for details.
    at org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:95)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSerivceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(StoreServiceDelegate.java:145)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(StoreServiceDelegate.java:99)
    at com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServiceImpl.java:76)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.RuntimeException: There were errors initializing your configuration: <openjpa-1.1.1-SNAPSHOT-r422266:965591 fatal store error> org.apache.openjpa.util.StoreException: The connection was refused >because the database weblogic_eval was not found.
    at org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(DataSourceFactory.java:235)
    at org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:684)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(ConfigurationImpl.java:288)
    at org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAConfigurationImpl.java:1409)
    at org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBrokerFactory.java:646)
    at org.apache.openjpa.kernel.AbstractBrokerFactory.pool(AbstractBrokerFactory.java:131)
    at kodo.jdbc.kernel.KodoJDBCBrokerFactory.getInstance(KodoJDBCBrokerFactory.java:43)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.openjpa.kernel.Bootstrap.invokeFactory(Bootstrap.java:124)
    at org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:90)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSerivceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(StoreServiceDelegate.java:145)
    at com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(StoreServiceDelegate.java:98)
    at com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServiceImpl.java:76)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:363)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:46)
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:299)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:220)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1785)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.sql.SQLNonTransientConnectionException: The connection was refused because the database weblogic_eval was not found.
    at org.apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
    at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
    at org.apache.derby.jdbc.ClientDriver.connect(Unknown Source)
    at com.solarmetric.jdbc.PoolingDataSource.newConnection(PoolingDataSource.java:272)
    at com.solarmetric.jdbc.ConnectionPoolImpl.makeConnection(ConnectionPoolImpl.java:413)
    at com.solarmetric.jdbc.ConnectionPoolImpl.getConnection(ConnectionPoolImpl.java:290)
    at com.solarmetric.jdbc.PoolingDataSource.getConnection(PoolingDataSource.java:199)
    at org.apache.openjpa.lib.jdbc.DelegatingDataSource.getConnection(DelegatingDataSource.java:113)
    at org.apache.openjpa.lib.jdbc.DecoratingDataSource.getConnection(DecoratingDataSource.java:93)
    at org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(DataSourceFactory.java:227)
    ... 37 more
    Caused by: org.apache.derby.client.am.DisconnectException: The connection was refused because the database weblogic_eval was not found.
    at org.apache.derby.client.net.NetConnectionReply.parseRDBNFNRM(Unknown Source)
    at org.apache.derby.client.net.NetConnectionReply.parseAccessRdbError(Unknown Source)
    at org.apache.derby.client.net.NetConnectionReply.parseACCRDBreply(Unknown Source)
    at org.apache.derby.client.net.NetConnectionReply.readAccessDatabase(Unknown Source)
    at org.apache.derby.client.net.NetConnection.readSecurityCheckAndAccessRdb(Unknown Source)
    at org.apache.derby.client.net.NetConnection.flowSecurityCheckAndAccessRdb(Unknown Source)
    at org.apache.derby.client.net.NetConnection.flowUSRIDPWDconnect(Unknown Source)
    at org.apache.derby.client.net.NetConnection.flowConnect(Unknown Source)
    at org.apache.derby.client.net.NetConnection.<init>(Unknown Source)
    at org.apache.derby.client.net.NetConnection40.<init>(Unknown Source)
    at org.apache.derby.client.net.ClientJDBCObjectFactoryImpl40.newNetConnection(Unknown Source)
    ... 45 more
    at org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(ConfigurationImpl.java:302)
    at org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAConfigurationImpl.java:1409)
    at org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBrokerFactory.java:646)
    at org.apache.openjpa.kernel.AbstractBrokerFactory.pool(AbstractBrokerFactory.java:131)
    at kodo.jdbc.kernel.KodoJDBCBrokerFactory.getInstance(KodoJDBCBrokerFactory.java:43)
    Truncated. see log file for complete stacktrace
    <Jan 13, 2012 10:03:00 AM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jan 13, 2012 10:03:00 AM IST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090399]Security Services Unavailable
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:916)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)>14. Due to above I have to run create_db.sh and then I started getting the exception described in question above.

  • Weblogic portal server getting problem it stops responding again again

    i am using weblogic portal 10.1 from last few weeks i am getting continuous problem as the server stops responding. in the admin server logs i have found errors mentioned below
    ####<Aug 31, 2009 11:59:48 AM FJT> <Error> <ContentManagement> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '24' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-74D57518D9A8B9659F4E> <> <1251676788241> <BEA-000000> <
    com.bea.content.RepositoryException: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 66 seconds
    BEA1-74D57518D9A8B9659F4E]'. No further JDBC access is allowed within this transaction.
         at com.bea.content.internal.server.dao.DaoBase.doDatabaseAction(DaoBase.java:287)
         at com.bea.content.internal.server.dao.DaoBase.doQueryActionAndCloseConnection(DaoBase.java:195)
         at com.bea.content.repo.internal.server.dao.NodeDao.hasChildren(NodeDao.java:595)
         at com.bea.content.repo.internal.server.persister.JDBCNodePersister.hasChildren(JDBCNodePersister.java:71)
         at com.bea.content.repo.internal.server.logic.NodeOpsLogic.hasChildren(NodeOpsLogic.java:1031)
         at com.bea.content.repo.internal.server.bean.NodeOpsBean.hasChildren(NodeOpsBean.java:321)
         at com.bea.content.repo.internal.server.bean.RepoNodeOps_ehgg7y_ELOImpl.hasChildren(RepoNodeOps_ehgg7y_ELOImpl.java:1229)
         at com.bea.content.repo.internal.client.common.Node.hasChildren(Node.java:233)
         at com.bea.content.spi.internal.NodeOpsBase.constructNode(NodeOpsBase.java:132)
         at com.bea.content.spi.internal.NodeOpsImpl.getNodesFromRepo(NodeOpsImpl.java:306)
         at com.bea.content.spi.internal.ExtendedNodeOpsImpl.getNodes(ExtendedNodeOpsImpl.java:55)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodesImpl(InternalNodeOpsBean.java:952)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodes(InternalNodeOpsBean.java:1950)
         at com.bea.content.manager.internal.NodeOpsEJB_ihurl6_ELOImpl.getNodes(NodeOpsEJB_ihurl6_ELOImpl.java:2776)
         at com.bea.content.manager.internal.NodeOpsImpl.getNodes(NodeOpsImpl.java:240)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.retrieveNodes(SearchTag.java:598)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.doStartTag(SearchTag.java:246)
         at jsp_servlet.__searchwap._jspService(__searchwap.java:351)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 66 seconds
    BEA1-74D57518D9A8B9659F4E]'. No further JDBC access is allowed within this transaction.
         at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:178)
         at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:188)
         at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:57)
         at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.next(Unknown Source)
         at com.bea.content.internal.server.common.dbaction.QueryAction.runExecuteStep(QueryAction.java:25)
         at com.bea.content.internal.server.common.dbaction.SqlStatementAction.execute(SqlStatementAction.java:115)
         at com.bea.content.internal.server.dao.DaoBase.doDatabaseAction(DaoBase.java:280)
         at com.bea.content.internal.server.dao.DaoBase.doQueryActionAndCloseConnection(DaoBase.java:195)
         at com.bea.content.repo.internal.server.dao.NodeDao.hasChildren(NodeDao.java:595)
         at com.bea.content.repo.internal.server.persister.JDBCNodePersister.hasChildren(JDBCNodePersister.java:71)
         at com.bea.content.repo.internal.server.logic.NodeOpsLogic.hasChildren(NodeOpsLogic.java:1031)
         at com.bea.content.repo.internal.server.bean.NodeOpsBean.hasChildren(NodeOpsBean.java:321)
         at com.bea.content.repo.internal.server.bean.RepoNodeOps_ehgg7y_ELOImpl.hasChildren(RepoNodeOps_ehgg7y_ELOImpl.java:1229)
         at com.bea.content.repo.internal.client.common.Node.hasChildren(Node.java:233)
         at com.bea.content.spi.internal.NodeOpsBase.constructNode(NodeOpsBase.java:132)
         at com.bea.content.spi.internal.NodeOpsImpl.getNodesFromRepo(NodeOpsImpl.java:306)
         at com.bea.content.spi.internal.ExtendedNodeOpsImpl.getNodes(ExtendedNodeOpsImpl.java:55)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodesImpl(InternalNodeOpsBean.java:952)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodes(InternalNodeOpsBean.java:1950)
         at com.bea.content.manager.internal.NodeOpsEJB_ihurl6_ELOImpl.getNodes(NodeOpsEJB_ihurl6_ELOImpl.java:2776)
         at com.bea.content.manager.internal.NodeOpsImpl.getNodes(NodeOpsImpl.java:240)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.retrieveNodes(SearchTag.java:598)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.doStartTag(SearchTag.java:246)
         at jsp_servlet.__searchwap._jspService(__searchwap.java:351)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    >
    ####<Aug 31, 2009 11:59:51 AM FJT> <Error> <ContentManagement> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '24' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-74D57518D9A8B9659F4E> <> <1251676791539> <BEA-000000> <
    com.bea.content.RepositoryException: An error occurred while trying to find children for node id 162,041.
         at com.bea.content.repo.internal.server.dao.NodeDao.hasChildren(NodeDao.java:606)
         at com.bea.content.repo.internal.server.persister.JDBCNodePersister.hasChildren(JDBCNodePersister.java:71)
         at com.bea.content.repo.internal.server.logic.NodeOpsLogic.hasChildren(NodeOpsLogic.java:1031)
         at com.bea.content.repo.internal.server.bean.NodeOpsBean.hasChildren(NodeOpsBean.java:321)
         at com.bea.content.repo.internal.server.bean.RepoNodeOps_ehgg7y_ELOImpl.hasChildren(RepoNodeOps_ehgg7y_ELOImpl.java:1229)
         at com.bea.content.repo.internal.client.common.Node.hasChildren(Node.java:233)
         at com.bea.content.spi.internal.NodeOpsBase.constructNode(NodeOpsBase.java:132)
         at com.bea.content.spi.internal.NodeOpsImpl.getNodesFromRepo(NodeOpsImpl.java:306)
         at com.bea.content.spi.internal.ExtendedNodeOpsImpl.getNodes(ExtendedNodeOpsImpl.java:55)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodesImpl(InternalNodeOpsBean.java:952)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodes(InternalNodeOpsBean.java:1950)
         at com.bea.content.manager.internal.NodeOpsEJB_ihurl6_ELOImpl.getNodes(NodeOpsEJB_ihurl6_ELOImpl.java:2776)
         at com.bea.content.manager.internal.NodeOpsImpl.getNodes(NodeOpsImpl.java:240)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.retrieveNodes(SearchTag.java:598)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.doStartTag(SearchTag.java:246)
         at jsp_servlet.__searchwap._jspService(__searchwap.java:351)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    com.bea.content.RepositoryException: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 66 seconds
    BEA1-74D57518D9A8B9659F4E]'. No further JDBC access is allowed within this transaction.
         at com.bea.content.internal.server.dao.DaoBase.doDatabaseAction(DaoBase.java:287)
         at com.bea.content.internal.server.dao.DaoBase.doQueryActionAndCloseConnection(DaoBase.java:195)
         at com.bea.content.repo.internal.server.dao.NodeDao.hasChildren(NodeDao.java:595)
         at com.bea.content.repo.internal.server.persister.JDBCNodePersister.hasChildren(JDBCNodePersister.java:71)
         at com.bea.content.repo.internal.server.logic.NodeOpsLogic.hasChildren(NodeOpsLogic.java:1031)
         at com.bea.content.repo.internal.server.bean.NodeOpsBean.hasChildren(NodeOpsBean.java:321)
         at com.bea.content.repo.internal.server.bean.RepoNodeOps_ehgg7y_ELOImpl.hasChildren(RepoNodeOps_ehgg7y_ELOImpl.java:1229)
         at com.bea.content.repo.internal.client.common.Node.hasChildren(Node.java:233)
         at com.bea.content.spi.internal.NodeOpsBase.constructNode(NodeOpsBase.java:132)
         at com.bea.content.spi.internal.NodeOpsImpl.getNodesFromRepo(NodeOpsImpl.java:306)
         at com.bea.content.spi.internal.ExtendedNodeOpsImpl.getNodes(ExtendedNodeOpsImpl.java:55)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodesImpl(InternalNodeOpsBean.java:952)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodes(InternalNodeOpsBean.java:1950)
         at com.bea.content.manager.internal.NodeOpsEJB_ihurl6_ELOImpl.getNodes(NodeOpsEJB_ihurl6_ELOImpl.java:2776)
         at com.bea.content.manager.internal.NodeOpsImpl.getNodes(NodeOpsImpl.java:240)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.retrieveNodes(SearchTag.java:598)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.doStartTag(SearchTag.java:246)
         at jsp_servlet.__searchwap._jspService(__searchwap.java:351)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 66 seconds
    BEA1-74D57518D9A8B9659F4E]'. No further JDBC access is allowed within this transaction.
         at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:178)
         at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:188)
         at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:57)
         at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.next(Unknown Source)
         at com.bea.content.internal.server.common.dbaction.QueryAction.runExecuteStep(QueryAction.java:25)
         at com.bea.content.internal.server.common.dbaction.SqlStatementAction.execute(SqlStatementAction.java:115)
         at com.bea.content.internal.server.dao.DaoBase.doDatabaseAction(DaoBase.java:280)
         at com.bea.content.internal.server.dao.DaoBase.doQueryActionAndCloseConnection(DaoBase.java:195)
         at com.bea.content.repo.internal.server.dao.NodeDao.hasChildren(NodeDao.java:595)
         at com.bea.content.repo.internal.server.persister.JDBCNodePersister.hasChildren(JDBCNodePersister.java:71)
         at com.bea.content.repo.internal.server.logic.NodeOpsLogic.hasChildren(NodeOpsLogic.java:1031)
         at com.bea.content.repo.internal.server.bean.NodeOpsBean.hasChildren(NodeOpsBean.java:321)
         at com.bea.content.repo.internal.server.bean.RepoNodeOps_ehgg7y_ELOImpl.hasChildren(RepoNodeOps_ehgg7y_ELOImpl.java:1229)
         at com.bea.content.repo.internal.client.common.Node.hasChildren(Node.java:233)
         at com.bea.content.spi.internal.NodeOpsBase.constructNode(NodeOpsBase.java:132)
         at com.bea.content.spi.internal.NodeOpsImpl.getNodesFromRepo(NodeOpsImpl.java:306)
         at com.bea.content.spi.internal.ExtendedNodeOpsImpl.getNodes(ExtendedNodeOpsImpl.java:55)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodesImpl(InternalNodeOpsBean.java:952)
         at com.bea.content.manager.internal.InternalNodeOpsBean.getNodes(InternalNodeOpsBean.java:1950)
         at com.bea.content.manager.internal.NodeOpsEJB_ihurl6_ELOImpl.getNodes(NodeOpsEJB_ihurl6_ELOImpl.java:2776)
         at com.bea.content.manager.internal.NodeOpsImpl.getNodes(NodeOpsImpl.java:240)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.retrieveNodes(SearchTag.java:598)
         at com.bea.content.manager.servlets.jsp.taglib.SearchTag.doStartTag(SearchTag.java:246)
         at jsp_servlet.__searchwap._jspService(__searchwap.java:351)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.continueChainNoWrapper(PageFlowPageFilter.java:455)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.runPage(PageFlowPageFilter.java:432)
         at org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:284)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

    and a lot of errors like these and finally in logs at the end we find
    ####<Aug 31, 2009 3:27:02 PM FJT> <Error> <WebLogicServer> <content-oam> <AdminServer> <[STANDBY] ExecuteThread: '268' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1251689222980> <BEA-000337> <[STUCK] ExecuteThread: '207' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "2,040" seconds working on the request "Http Request: /WapWeb/siteController.jsp", which is more than the configured time (StuckThreadMaxTime) of "2,000" seconds. Stack trace:
         weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:35)
         org.apache.beehive.netui.pageflow.internal.DefaultReloadableClassHandler.loadClass(DefaultReloadableClassHandler.java:188)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getFlowControllerClass(FlowControllerFactory.java:533)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.createPageFlow(FlowControllerFactory.java:189)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getPageFlowForPath(FlowControllerFactory.java:163)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getPageFlowForRequest(FlowControllerFactory.java:127)
         org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:244)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(Unknown Source)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    >
    ####<Aug 31, 2009 3:27:03 PM FJT> <Error> <WebLogicServer> <content-oam> <AdminServer> <[STANDBY] ExecuteThread: '268' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1251689223109> <BEA-000337> <[STUCK] ExecuteThread: '206' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "2,040" seconds working on the request "Http Request: /WapWeb/siteController.jsp", which is more than the configured time (StuckThreadMaxTime) of "2,000" seconds. Stack trace:
         weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:35)
         org.apache.beehive.netui.pageflow.internal.DefaultReloadableClassHandler.loadClass(DefaultReloadableClassHandler.java:188)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getFlowControllerClass(FlowControllerFactory.java:533)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.createPageFlow(FlowControllerFactory.java:189)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getPageFlowForPath(FlowControllerFactory.java:163)
         org.apache.beehive.netui.pageflow.FlowControllerFactory.getPageFlowForRequest(FlowControllerFactory.java:127)
         org.apache.beehive.netui.pageflow.PageFlowPageFilter.doFilter(PageFlowPageFilter.java:244)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(Unknown Source)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    >
    ####<Aug 31, 2009 3:27:55 PM FJT> <Warning> <Socket> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '212' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1251689275482> <BEA-000449> <Closing socket as no data read from it during the configured idle timeout of 5 secs>
    ####<Aug 31, 2009 3:29:59 PM FJT> <Error> <PortalAdminTools> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '83' for queue: 'weblogic.kernel.Default (self-tuning)'> <Webmasters> <> <> <1251689399276> <BEA-415121> <the treeMode cannot be found>
    ####<Aug 31, 2009 3:29:59 PM FJT> <Error> <org.apache.beehive.netui.pageflow.internal.DefaultExceptionsHandler> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '83' for queue: 'weblogic.kernel.Default (self-tuning)'> <Webmasters> <> <> <1251689399282> <BEA-000000> <Could not find exception handler method handleException for java.lang.NullPointerException.>
    ####<Aug 31, 2009 3:29:59 PM FJT> <Error> <org.apache.beehive.netui.pageflow.internal.DefaultExceptionsHandler> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '83' for queue: 'weblogic.kernel.Default (self-tuning)'> <Webmasters> <> <> <1251689399283> <BEA-000000> <Could not find exception handler method handleException for java.lang.RuntimeException.>
    ####<Aug 31, 2009 3:29:59 PM FJT> <Error> <org.apache.beehive.netui.pageflow.internal.DefaultExceptionsHandler> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '83' for queue: 'weblogic.kernel.Default (self-tuning)'> <Webmasters> <> <> <1251689399283> <BEA-000000> <Could not find message-resources for bundle org.apache.struts.action.MESSAGE>
    ####<Aug 31, 2009 3:29:59 PM FJT> <Warning> <global.internal.AbstractBaseController$LoggerCatalog> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '83' for queue: 'weblogic.kernel.Default (self-tuning)'> <Webmasters> <> <> <1251689399283> <BEA-000000> <Exception occured trying to instantiate the null bean.
    java.lang.NullPointerException
         at util.tree.TreeController.constructRootWithoutChildren(TreeController.java:483)
         at util.tree.TreeController.view(TreeController.java:172)
         at sun.reflect.GeneratedMethodAccessor637.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:879)
         at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
         at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
         at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
         at global.internal.AbstractBaseController.internalExecute(AbstractBaseController.java:348)
         at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
         at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1170)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1201)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:266)
         at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.render(PageFlowStubImpl.java:135)
         at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:290)
         at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:426)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:712)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:724)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:188)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:142)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:377)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:253)
         at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:206)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:191)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:266)
         at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:656)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.jsptools.servlet.PagedResultServiceFilter.doFilter(PagedResultServiceFilter.java:82)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    >
    ####<Aug 31, 2009 3:31:31 PM FJT> <Critical> <Health> <content-oam> <AdminServer> <weblogic.GCMonitor> <<anonymous>> <> <> <1251689491464> <BEA-310003> <Free memory in the server is 4,431,384 bytes. There is danger of OutOfMemoryError>
    ####<Aug 31, 2009 3:33:25 PM FJT> <Critical> <Health> <content-oam> <AdminServer> <weblogic.GCMonitor> <<anonymous>> <> <> <1251689605339> <BEA-310003> <Free memory in the server is 2,960,928 bytes. There is danger of OutOfMemoryError>
    ####<Aug 31, 2009 3:34:07 PM FJT> <Warning> <Socket> <content-oam> <AdminServer> <[ACTIVE] ExecuteThread: '133' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1251689647279> <BEA-000449> <Closing socket as no data read from it during the configured idle timeout of 5 secs>

  • Gettin error while starting the weblogic portal server

    Hi ,
    This is Kalyan. I had installed weblogic portal 10.3 in my system.After installing i had tried for the sample portal web application. I had selected the portal web project-->given the project name and selected the necessary things .I had create sample portal when iam trying to run this portal on the server it showing me the error.
    Error(s) found in module 'ProData'. Publish was cancelled. See "Problems" view for details.
    A WebLogic Portal web application project should be added as a J2EE module to a WebLogic Portal EAR project for proper deployment at ProData
    The associated EAR "ProDataEAR" is not a Portal Application Services EAR at ProData
    A Portal Application Services web application should be associated with a Portal Application Services EAR for proper deployment at ProData
    Here ProData is the my project name can anybody tell me the solution i will be grate ful to them
    Thanks & Regards

    Hi Kalyan
    1. First you need to create the portal ear project by selecting the portal project facets. Then create the portal web project with portal facets and make sure it is added to first create portal ear project. By default it will show in the list. Then portal data sync project is optional. Since this is your first time you can skip for now. Later on you can add data sync project also to the same portal ear. Once you have this, then you can deploy the portal ear project on the portal domain. Remember that you need to create the portal domain with portal facets.
    Delete the project you already created and start from fresh. If you already created any portlets or pageflows or jsps etc, copy those files as backup. Once you create portal ear and web projects, copy them into your new application.
    Here is the link for details: http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/quickstart/newproject.html
    HTH
    Ravi Jegga

  • How to implement Breadcrumb functionality in weblogic portal 10.3

    Hi,
    We need to implement the breadcrumb functionality in weblogic portal 10.3.
    Tried to look for it in Google. But couldn't get success.
    Can someone help on how to implement this.
    Thanks
    Uttam

    Please find the example code for Breadcrumbs
    <%
         ArrayList breadcrumbTitles = new ArrayList();
         ArrayList breadcrumbURLs = new ArrayList();
         BookPresentationContext book = BookPresentationContext.getBookPresentationContext(request);
    PagePresentationContext pageCtx = PagePresentationContext.getPagePresentationContext(request);
         if(pageCtx.getDefinitionLabel() != null )
              breadcrumbTitles.add(pageCtx.getTitle());
              breadcrumbURLs.add(PageURL.createPageURL(request, response, pageCtx.getDefinitionLabel()).toString());
         if (!(book.getDefaultPage().equals(pageCtx.getDefinitionLabel())))
              breadcrumbTitles.add(book.getTitle());
              breadcrumbURLs.add(PageURL.createPageURL(request, response, book.getDefaultPage()).toString());
         else
              breadcrumbTitles.add(book.getTitle());
              breadcrumbURLs.add(PageURL.createPageURL(request, response, pageCtx.getDefinitionLabel()).toString());           
              PagePresentationContext parentPage = book.getParentPagePresentationContext();           
              while (parentPage != null)
                   breadcrumbTitles.add(parentPage.getTitle());
                   if (parentPage instanceof BookPresentationContext)
                        BookPresentationContext parentBook = (BookPresentationContext)parentPage;
                        // condition for not showing my eagle page when user not logged in. instead show default home page
                        if (parentBook.getDefaultPage().equalsIgnoreCase(""))
                             breadcrumbURLs.add(PageURL.createPageURL(request, response, ""));
                        }else
                             breadcrumbURLs.add(PageURL.createPageURL(request, response, parentBook.getDefaultPage()).toString());
                   else
                        breadcrumbURLs.add(PageURL.createPageURL(request, response, parentPage.getDefinitionLabel()).toString());
                   parentPage = parentPage.getParentPagePresentationContext();
    %>
         <ul class="breadcrumbs">
    <%
                   // compare if current page is selected. then dont show hyper link
                   if (pageCtx.getTitle().toString().equalsIgnoreCase((String)breadcrumbTitles.get(i)))               
    %>
                             <%=breadcrumbTitles.get(i)%>  
    <%          
                        }else
    %>                    
                             <a href="<%=breadcrumbURLs.get(i)%> "><font color="#005596"><%=breadcrumbTitles.get(i)%></font></a></b><img src="<render:getSkinPath imageName="/spacer.gif" />" width="2" /><img align="bottom" src="<render:getSkinPath imageName="/arrow_right.gif" />" />
                             <%
    %>
         </ul>

Maybe you are looking for

  • How do you move video files from external hard drive?

    I moved video files that were originally from Flip Video recorder and uploaded to my Macbook to an external hard drive to save space.  However, I can't seem to figure out how to get them back onto my computer, so I can start burning DVDs.  I tried dr

  • Camera not being detected

    To start, iPhoto nor Image Capture can see the camera on my MacBook Pro. Now for the details: I have a MacBookPro (2.4Ghz Core 2 duo) and the camera is a Canon EOS Digital Rebel XT. When I connect my camera via USB to the MBP it simply doesn't see it

  • Some sampe financial reports developed in abap ?

    Hi, Can some one list or explain some sample custom FI/CO related reports that can be developed using ABAP ? Typically asked in client environment. I want to practise ALV reporting. thanks

  • The following files weren't attached because adding them would cause the message to exceed the maximum size limit of 35 MB: MALAWI .pptx.

    The following files weren't attached because adding them would cause the message to exceed the maximum size limit of 35 MB. I have had my macbook pro since June and have had no problems sending an email until I have tried to send a presentation today

  • ConnectionPool & ASA Sybase

    Hi All, I've tried connect to Adaptive Server Anywhere by using ConnectionPool. WebLogic returns error: weblogic.jws.control.ControlException: Invalid @jws: connection data-source-jndi-name: cgPlantDataSource. The list of configured data sources can