Problem in portlets

the problem is i make an apllication in faces but when i converted to portlets i convert to winrar file and deploy on portal container but the msg is deployment succesfull but when i wana see the deployed portlet wat i get just a boring msg
Wait..portlet webapp is being deployed.
now i dnt lose heart and find a solution that if i remove action tag from facesconfig.xml then it is properly deployed
but when iam going to edit i found that values for the edit form is not populated this mean that values for the bean are not populated so wat to do know

You can get access to the real or unwrapped request by using a ScopedServletUtils method in your included jsp. So try something like this:
<%@ page import="com.bea.wlw.netui.pageflow.scoping.ScopedServletUtils"%>
HttpServletRequest req = (HttpServletRequest) ScopedServletUtils.getOuterRequest(request);
String type = (String) req.getParameter("reqType");

Similar Messages

  • Problem with Portlet Backing Context

    Hi,
    I am having problem with Portlet Backing context.
    I have on portlet and one JPF associated with this portlet.
    Now in JPF action method i have Portlet Backing context object, using this object
    i tried to get the previous portlet state using portletCtx.getPreviousWindowState().
    But It always gives me null.
    can anyone help me out ? its very urgent.
    or you can suggest me anyother option to do this....
    Thanks,
    Vijay Patel

    Vijay -
    You might want to post this to the Portal newsgroup.
    Regards,
    Kunal
    "vijay patel" <[email protected]> wrote:
    >
    Hi,
    I am having problem with Portlet Backing context.
    I have on portlet and one JPF associated with this portlet.
    Now in JPF action method i have Portlet Backing context object, using
    this object
    i tried to get the previous portlet state using portletCtx.getPreviousWindowState().
    But It always gives me null.
    can anyone help me out ? its very urgent.
    or you can suggest me anyother option to do this....
    Thanks,
    Vijay Patel

  • Problem adding portlets

    Hello,
    I have problems with adding portlets to a region in the 'Add Portlets To Region' page. There are no portlets visible on the left side of the page.
    The problem only occurs sometimes.
    Regards
    Fredrik

    I have tested more and the problem arise when I change the state of the checkbox
    Publish to Portal in
    Navigator->Applications->Actions->Grant Access->Portal Access.
    Fredrik

  • Problem with portlets with XSLT generating dynamic portal compatible links

    Hi,
    We're using XSLT to transform XML data to HTML in a portlet. The problem is that
    the XML contains headlines and we need to create links to the complete article,
    which has to be displayed in the same portlet. How do I create a portal comaptible
    link with XSLT? In the JSP you can use the netui tag library like:
    <netui:anchor action="..">
    link
    <netui:parameter name="id" value="{id}"/>
    </netui:anchor>
    but how can I achieve this with XSLT? We tried generating the xsl with a jsp,
    but this doesn't work since the data entered in the value attribute of the netui:parameter
    tag will be encoded causing the XSL transformer to fail.
    Is there an easy solution to this? Or can XSLT only be used with very simple content?
    Ard

    We're trying to display some news headlines, clicking a headline has to invoke
    an action to display the complete article in the same portlet (using pageflow).
    When displaying the articles we use XSLT like (this is a JSP generating XSLT):
    <?xml version="1.0"?>
    <%@ page contentType="text/x-xslt"%>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
    <xsl:template match="items">
    <xsl:apply-templates select="item"/>
    </xsl:template>
    <xsl:template match="item">
    <nobr>
    <%-- ###### Here we need an action link, with the title as a request parameter
    ###### --%>
    <xsl:value-of select="@title"/>
    </nobr>
    </xsl:template>
    </xsl:stylesheet>
    The XML is like:
    <items>
    <item title="some title"/>
    <item title="some other title"/>
    </items>
    We need to generate a portal compatible link which invokes an action (show_details)
    with the title of the article as a request parameter.
    I know how to do this in a JSP, but since the data is in XML we like to do this
    with XSLT.
    Can you help?
    Subbu Allamaraju <subbuATBeaDOTCom> wrote:
    Could you elaborate (perhaps with some xsl snippet generated by jsp)
    the
    failures you were getting with xslt?
    Subbu
    Ard van der Scheer wrote:
    Hi,
    We're using XSLT to transform XML data to HTML in a portlet. The problemis that
    the XML contains headlines and we need to create links to the completearticle,
    which has to be displayed in the same portlet. How do I create a portalcomaptible
    link with XSLT? In the JSP you can use the netui tag library like:
    <netui:anchor action="..">
    link
    <netui:parameter name="id" value="{id}"/>
    </netui:anchor>
    but how can I achieve this with XSLT? We tried generating the xsl witha jsp,
    but this doesn't work since the data entered in the value attributeof the netui:parameter
    tag will be encoded causing the XSL transformer to fail.
    Is there an easy solution to this? Or can XSLT only be used with verysimple content?
    Ard

  • Problem with portlet addin

    Hopefully someone can help me with the following problem, I'm trying to setup a demo of portlets for a customer.
    I've downloaded the latest portlet wizard addin that supports JSR 168. But after following the installation instructions it did not work for me.
    When clicking the finisch button on the Java Portlet wizard the following exception occurs:
    Exception occurred during event dispatching:
    oracle.xml.parser.v2.XMLDOMException: Node does not exist.
    org.w3c.dom.Node oracle.xml.parser.v2.XMLAttrList.removeNamedItemNS(java
    .lang.String, java.lang.String)
    XMLAttrList.java:711
    I've tried this with jdev 9.0.3.2 and 9.0.3.3.

    Hello Jelco,
    Did you install the Java Web Service Developer Pack 1.3 or 1.2 ?
    My guess is you are using the 1.3 and this is the reason why you have get this error.
    Sun provide access to all previous downoad in the archive section:
    http://java.sun.com/webservices/archive.html
    If you installed 1.3 could you please install 1.2 and let me know ?
    Regards
    Tugdual

  • Problems with Portlet projects

    Hi,
    Started using Java Studio Enterprise recently (now that it's free) since I am developing portlet applications for an organization running the enterprise system in production use.
    The IDE is great (love the UML stuff) but I've run in to a couple of problems that are really slowing me down.
    When I run a portlet project in the Application Server (using the Harness portlet provider/Portal Server simulator) I noticed that every request made to the Portlet is duplicated. So if I have a line like...
    System.out.println("Portlet: doView()");
    ... in the Portlets doView method I get this in the server log:
    [#|2006-01-13T12:09:27.093+0200|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.stream.out|_ThreadID=31;|
    Portlet: doView()|#]
    [#|2006-01-13T12:09:27.109+0200|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.stream.out|_ThreadID=31;|
    Portlet: doView()|#]
    Why is this happening and what can I do about it? I first noticed this when I was using a DAO from a portlet and all my sql statements got executed twice!
    The other thing that's annoying me is that when i shutdown the ide, my datasource reference is whiped out from my web.xml file. So everytime I start Studio Enterprise I have to manually edit the web.xml file to get my datasource working. I have configured my datasource with the IDE (new File > Sun Resource -> JDBC resource...).
    Any ideas?

    Unfortunately this is a bug in in JSE 8.0. It will be fixed in the currently developed JSE 8.1, but for now there exists a work-around (quoting our portlet builder engineer):
    1. Go to folder <userdir>/config/ps/Harness
    (e.g.: "C:\Documents and Settings\<username>\.jstudio\Ent8\config\ps\Harness")
    2. Open jsp file "PSSimTarget.jsp" in
    <userdir>/config/ps/Harness/web/desktop/default/harness/PSSimTarget.jsp
    3. Find next lines at the top of the file:
    <i18n:set
    var="locale"><%=ProviderHarness.getHarness(request,response,pageContext).getLocaleString()%></i18n:set>
    <i18n:setLocale value="${locale}" scope="session"/>
    <i18n:setBundle basename="i18n.Bundle" var="myBundle"/>
    4. Replace it with next lines:
    <%
    HttpSession httpsession = request.getSession();
    ProviderHarness tmpObj =
    (ProviderHarness)httpsession.getAttribute("desktop.Simulator.ProviderHarness");
    if (tmpObj == null) {
    %>
    <i18n:set var="locale"><%=ProviderHarness.getHarness(request,response,pageContext).getLocaleString()%></i18n:set>
    <%
    %>
    <i18n:setLocale value="${locale}" scope="session"/>
    <i18n:setBundle basename="i18n.Bundle" var="myBundle"/>
    Every time when you start studio with new userdir, you should change PSSimTarget.jsp to avoid double requests.

  • Urgent: Parameter problem for portlet displaying jsp running inside tomcat

    Following jsp when run with portal 9.0.2 displays value of Name and Age but value of Telephone parameter is displayed as Null. Can anybody tell me the reason?
    Running this jsp on IBM WebSphere.
    <%@ page contentType="text/html;charset=UTF-8" %>
    <%@page import="java.util.*, oracle.portal.provider.v2.*" %>
    <%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %>
    <%@page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.url.UrlUtils" %>
    <%
    // The form submit URL refers to the current Portal page. All portlets
    // on this page share this URL. This means that the per portlet parameters
    // are in the same request. Portlets must ensure that its paramerters don't
    // collide either with other portlets or other instances of itself. This
    // is generally accomplished by using "fully-qualified" parameter names. A
    // fully-qualified parameter name prepends the (unique) portlet reference to
    // the parameter. The JPDK provides a utility to accomplish this.
    String portletParamName = "mName";
    String portletParamAge = "mAge";
    String portletParamSubmit = "mSubmit";
    String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
    String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    // These are the session attribute names used to store the current values.
    // Because all instances of this portlet share the same user session we must
    // also fully-qualify these names to avoid collisions.
    String sName = HttpPortletRendererUtil.portletParameter(request, "sName");
    String sAge = HttpPortletRendererUtil.portletParameter(request, "sAge");
    String sTelephone = request.getParameter("TELEPHONE");
    PortletRenderRequest pRequest = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    String formName = UrlUtils.htmlFormName(pRequest,null);
    ProviderUser user = pRequest.getUser();
    ProviderSession providerSession = user.getSession();
    if (providerSession == null)
    %>
    Your provider session has been terminated or has timed out
    and you need to logout and then login to re-establish the session.
    <%
    else
    // Record, in session storage, the last values submitted.
    if (pRequest.getQualifiedParameter(portletParamSubmit) != null)
    providerSession.setAttribute(sName, pRequest.getQualifiedParameter(portletParamName));
    providerSession.setAttribute(sAge, pRequest.getQualifiedParameter(portletParamAge));
    %>
    <!-- Output the HTML content -->
    <center>
    <table width="70%">
    <tr>
    <td>
    <b>This portlet shows how to post and process information from HTML forms.</b>
    </td>
    </tr>
    </table>
    <form name="<%= formName %>" method="POST"
    action="<%= UrlUtils.htmlFormActionLink(pRequest,UrlUtils.PAGE_LINK) %>">
    <%= UrlUtils.htmlFormHiddenFields(pRequest,UrlUtils.PAGE_LINK, formName) %>
    <table>
    <tr>
    <td>
    <b>Name :</b>
    </td>
    <td>
    <input type="text" size="20" name="<%= fName %>" value="">
    </td>
    </tr>
    <tr>
    <td>
    <b>Age : </b>
    </td>
    <td>
    <input type="text" size="3" name="<%= fAge %>" value="">
    </td>
    </tr>
    <tr>
    <td>
    <b>Telephone : </b>
    </td>
    <td>
    <input type="text" size="3" name="TELEPHONE" value="">
    </td>
    </tr>
    </table>
    <br>
    <INPUT TYPE=submit name="<%= fSubmit %>" Value="Submit">
    </form>
    <%
    if ((providerSession.getAttribute(sName) == null)&& (providerSession.getAttribute(sAge) == null)) {
    %>
    <b>No values have been submitted yet.</b>
    <%
    } else {
    %>
    <b> Last submitted values:</b><br>
    <table>
    <tr>
    <td>
    <b>Name: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sName) %></b>
    </td>
    </tr>
    <tr>
    <td>
    <b>Age: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sAge) %></b>
    </td>
    </tr>
    <tr>
    <td>
    <b>Telephone: </b>
    </td>
    <td>
    <b><%= sTelephone %></b>
    </td>
    </tr>
    </table>
    <%
    %>
    </center>
    <%
    %>
    <!-- End output the HTML content -->
    Can somebody please help me on this?
    Thanks

    Hello,
    Let me know if the answer that I made Help needed: JSP and portal parameter problem.
    Regards
    Tugdual Grall

  • Problem using portlet's fork render with simplify url servlet

    Hi,
    I'm creating a portal with bea weblogic portal and for simplify the urls I'm using the example of edocs to do this.
    http://edocs.bea.com/wlp/docs81/url/simplify.html
    Everything works fine until i need to use the portlet fork render functionality to increase performance, since now I'm getting the following error:
    Error 500--Internal Server Error
    java.lang.ClassCastException
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:257)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:204)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:146)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:333)
         at com.bea.netuix.servlets.manager.UIServlet.processControlTree(UIServlet.java:220)
         at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:820)
         at com.bea.netuix.servlets.manager.PortalServlet.doGet(PortalServlet.java:671)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:147)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:328)
         at pt.pj.portal.servlets.PageServlet.doGet(PageServlet.java:239)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at pt.pj.portal.filters.CompressionFilter.doFilter(CompressionFilter.java:58)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at pt.pj.portal.filters.LogFilter.doFilter(LogFilter.java:41)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    The problem only occurs if I use the simplify url servlet since if i use the portal file directly everything works fine.
    Anyone knows what I'm doing wrong?
    Thanks in advanced,
    rjc

    Anyone has an answer for my question?
    Thanks in advanced
    rjc

  • Problem:programmatically portlet deployment

    Hi ...
    I want to programmatically deploy a portlet application in a portal's HOME page.
    For this i have identified following four steps:
    1. First step is to copy the J2EE resources of the portlet in a specific directory.
    2. Change the portal configuration file named xyz.portal to add this new
    portlet in the portal's HOME page.
    3. Run the "SYNC" utility to refresh the portal server.
    4. Now set the portlet properties "Visible" and "Available" to true.
    I am able to do things till step 3.
    Now i have two questions?
    1. I am able to set the property "visible" to true (by modifying the portletname.portlet
    file - mandatory element) but i could not find a way to directly
    set the "available property" to true. How can i do this programmatically.
    2. Is there a better way of doing the above four steps (for eg is there some utility
    which does the portlet deployment)
    Regards,
    Ubhay.

    Resolved it! :)
    This was the consequence of deploying portlets with invalid descriptor (not sure which one - web.xml or portal.xml - i will investigate later).
    It seems that Portal Server tries to reload all these portlets during
    "deploy redeploy" task.
    I use my own classes on portal, so executing "deploy redeploy" task is crucial for me. CLI171 error blocks the execution of this task!
    So, i deleted invalid wars and their descriptors from
    /var/opt/SUNWps/tmp/portlet/ and restarted application server - this
    solves the problem completely - and now i able to use "deploy redeploy".
    This tip may be useful during active portlet deployment:) Beware of CLI171 error! :)
    Vad.

  • Problem consuming portlet of an ADF application into webcenter application

    Hi,
    I have created a simple ADF application with one JSF page having a document list task flow displaying some documents from UCM. I created a portlet out of it by Create Portlet Entry and deployed it onto integrated weblogic. Then i created a webcenter Application in which i created a single JSF page and dragged that registered portlet on to it.
    Problem is that Portlet runs fine standalone
    It also Gives the correct WSDL
    It was registered successfully
    But when i consumed that into my webcenter application, It given me Portlet Unavailable.
    Here is the stacktrace of my Jdeveloper log:
    Target URL -- http://127.0.0.1:7101/MyApplication/faces/PortletTest.jspx
    <MetadataResourceXmlImpl><parseBeans> ADFc: /META-INF/adfc-config.xml:
    <MetadataResourceXmlImpl><parseBeans> ADFc: Duplicate managed bean definition for 'task_flow_action_bean' detected.
    <GlobalConfiguratorImpl><init> Configurator services already initialized.
    <PortletApplicationImpl><log> Exception thrown in doFacesRequest:render
    java.lang.ClassCastException: oracle.jbo.mom.DefinitionContextAgeable cannot be cast to oracle.jbo.mom.DefinitionContext
         at oracle.jbo.mom.DefinitionManager.getCurrentDefinitionContext(DefinitionManager.java:2447)
         at oracle.jbo.mom.DefinitionManager.findLoadedObject(DefinitionManager.java:2302)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.findCpx(JUMetaObjectManager.java:634)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:692)
         at oracle.adf.model.BindingContext.initialize(BindingContext.java:374)
         at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:221)
         at oracle.portlet.bridge.adf.lifecycle.ADFBindingBridgeLifecycleListenerImpl.onBeginRequest(ADFBindingBridgeLifecycleListenerImpl.java:94)
         at oracle.portlet.bridge.adf.context.ADFPortletExternalContextImpl.<init>(ADFPortletExternalContextImpl.java:225)
         at oracle.portlet.bridge.adf.context.ADFPortletFacesContextImpl.<init>(ADFPortletFacesContextImpl.java:40)
         at oracle.portlet.bridge.adf.context.ADFPortletFacesContextFactoryImpl.getFacesContext(ADFPortletFacesContextFactoryImpl.java:41)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
         at oracle.adfinternal.controller.application.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:56)
         at oracle.adfinternal.controller.application.model.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:70)
         at oracle.adfinternal.view.faces.portlet.ADFPortletFacesContextFactory.getFacesContext(ADFPortletFacesContextFactory.java:36)
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.getFacesContext(BridgeImpl.java:989)
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:535)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:498)
         at javax.portlet.faces.GenericFacesPortlet.doRenderDispatchInternal(GenericFacesPortlet.java:449)
         at javax.portlet.faces.GenericFacesPortlet.doView(GenericFacesPortlet.java:241)
         at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:243)
         at javax.portlet.faces.GenericFacesPortlet.doDispatch(GenericFacesPortlet.java:209)
         at javax.portlet.GenericPortlet.render(GenericPortlet.java:163)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.render(ADFBridgePortlet.java:287)
         at oracle.portlet.server.containerimpl.ServerImpl.doRuntimeCall(ServerImpl.java:1316)
         at oracle.portlet.server.containerimpl.ServerImpl.getMarkup(ServerImpl.java:143)
         at oracle.portlet.server.containerimpl.ServerPerfLogger.getMarkup(ServerPerfLogger.java:584)
         at oracle.portlet.wsrp.v2.WSRPv2VersionWrapperServer.getMarkup(WSRPv2VersionWrapperServer.java:545)
         at oracle.portlet.wsrp.v2.WSRPv2ToServer.getMarkup(WSRPv2ToServer.java:15127)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapToJaxb.getMarkup(WSRP_v2_Markup_PortTypeSoapToJaxb.java:81)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapPerfLogger.getMarkup(WSRP_v2_Markup_PortTypeSoapPerfLogger.java:58)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getMarkup(WSRP_v2_Markup_Binding_SOAP_Tie.java:814)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1457)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:421)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:996)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:312)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:222)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:166)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:430)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.server.service.ContextFilter.doFilter(ContextFilter.java:101)
         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 oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    <PortletApplicationImpl><logWithLevel> An internal error has occurred in method getMarkup.
    javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:502)
         at javax.portlet.faces.GenericFacesPortlet.doRenderDispatchInternal(GenericFacesPortlet.java:449)
         at javax.portlet.faces.GenericFacesPortlet.doView(GenericFacesPortlet.java:241)
         at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:243)
         at javax.portlet.faces.GenericFacesPortlet.doDispatch(GenericFacesPortlet.java:209)
         at javax.portlet.GenericPortlet.render(GenericPortlet.java:163)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.render(ADFBridgePortlet.java:287)
         at oracle.portlet.server.containerimpl.ServerImpl.doRuntimeCall(ServerImpl.java:1316)
         at oracle.portlet.server.containerimpl.ServerImpl.getMarkup(ServerImpl.java:143)
         at oracle.portlet.server.containerimpl.ServerPerfLogger.getMarkup(ServerPerfLogger.java:584)
         at oracle.portlet.wsrp.v2.WSRPv2VersionWrapperServer.getMarkup(WSRPv2VersionWrapperServer.java:545)
         at oracle.portlet.wsrp.v2.WSRPv2ToServer.getMarkup(WSRPv2ToServer.java:15127)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapToJaxb.getMarkup(WSRP_v2_Markup_PortTypeSoapToJaxb.java:81)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapPerfLogger.getMarkup(WSRP_v2_Markup_PortTypeSoapPerfLogger.java:58)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getMarkup(WSRP_v2_Markup_Binding_SOAP_Tie.java:814)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1457)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:421)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:996)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:312)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:222)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:166)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:430)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.server.service.ContextFilter.doFilter(ContextFilter.java:101)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: javax.portlet.faces.BridgeException: oracle.jbo.mom.DefinitionContextAgeable cannot be cast to oracle.jbo.mom.DefinitionContext
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:587)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:498)
         ... 55 more
    Nested Exception is javax.portlet.faces.BridgeException: oracle.jbo.mom.DefinitionContextAgeable cannot be cast to oracle.jbo.mom.DefinitionContext
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:587)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:498)
         at javax.portlet.faces.GenericFacesPortlet.doRenderDispatchInternal(GenericFacesPortlet.java:449)
         at javax.portlet.faces.GenericFacesPortlet.doView(GenericFacesPortlet.java:241)
         at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:243)
         at javax.portlet.faces.GenericFacesPortlet.doDispatch(GenericFacesPortlet.java:209)
         at javax.portlet.GenericPortlet.render(GenericPortlet.java:163)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.render(ADFBridgePortlet.java:287)
         at oracle.portlet.server.containerimpl.ServerImpl.doRuntimeCall(ServerImpl.java:1316)
         at oracle.portlet.server.containerimpl.ServerImpl.getMarkup(ServerImpl.java:143)
         at oracle.portlet.server.containerimpl.ServerPerfLogger.getMarkup(ServerPerfLogger.java:584)
         at oracle.portlet.wsrp.v2.WSRPv2VersionWrapperServer.getMarkup(WSRPv2VersionWrapperServer.java:545)
         at oracle.portlet.wsrp.v2.WSRPv2ToServer.getMarkup(WSRPv2ToServer.java:15127)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapToJaxb.getMarkup(WSRP_v2_Markup_PortTypeSoapToJaxb.java:81)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapPerfLogger.getMarkup(WSRP_v2_Markup_PortTypeSoapPerfLogger.java:58)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getMarkup(WSRP_v2_Markup_Binding_SOAP_Tie.java:814)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1457)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:421)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:996)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:312)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:222)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:166)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:430)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.server.service.ContextFilter.doFilter(ContextFilter.java:101)
         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 oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         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.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         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:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <HTTPClientTransport><invoke> A request to the producer URL "http://10.193.166.125:7101/UCMTestWebApp/portlets/WSRP_v2_Markup_Service" resulted in a status 500 response with fault string "oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request". The fault code given was "ns0:OperationFailed". The producer generated a timestamp of 2010-12-08T06:42:02+0530 and associated the following stack trace with the fault message: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at oracle.portlet.wsrp.v2.WSRPv2ToServer.getMarkup(WSRPv2ToServer.java:15310)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapToJaxb.getMarkup(WSRP_v2_Markup_PortTypeSoapToJaxb.java:81)
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeSoapPerfLogger.getMarkup(WSRP_v2_Markup_PortTypeSoapPerfLogger.java:58)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getMarkup(WSRP_v2_Markup_Binding_SOAP_Tie.java:814)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1457)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:421)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:996)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:312)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:222)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:166)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:430)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.server.service.ContextFilter.doFilter(ContextFilter.java:101)
         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 oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         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.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         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:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at oracle.portlet.server.containerimpl.ServerImpl.doRuntimeCall(ServerImpl.java:1411)
         at oracle.portlet.server.containerimpl.ServerImpl.getMarkup(ServerImpl.java:143)
         at oracle.portlet.server.containerimpl.ServerPerfLogger.getMarkup(ServerPerfLogger.java:584)
         at oracle.portlet.wsrp.v2.WSRPv2VersionWrapperServer.getMarkup(WSRPv2VersionWrapperServer.java:545)
         at oracle.portlet.wsrp.v2.WSRPv2ToServer.getMarkup(WSRPv2ToServer.java:15127)
         ... 44 more
    Caused by: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:502)
         at javax.portlet.faces.GenericFacesPortlet.doRenderDispatchInternal(GenericFacesPortlet.java:449)
         at javax.portlet.faces.GenericFacesPortlet.doView(GenericFacesPortlet.java:241)
         at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:243)
         at javax.portlet.faces.GenericFacesPortlet.doDispatch(GenericFacesPortlet.java:209)
         at javax.portlet.GenericPortlet.render(GenericPortlet.java:163)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.render(ADFBridgePortlet.java:287)
         at oracle.portlet.server.containerimpl.ServerImpl.doRuntimeCall(ServerImpl.java:1316)
         ... 48 more
    Caused by: javax.portlet.faces.BridgeException: oracle.jbo.mom.DefinitionContextAgeable cannot be cast to oracle.jbo.mom.DefinitionContext
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:587)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:498)
         ... 55 more
    <ADFPortletServlet><process> oracle.adf.model.portlet.binding.PortletModelException
         at oracle.adfinternal.model.portlet.binding.IframeContentRequest$IframePortletModel.getPortletRendition(IframeContentRequest.java:402)
         at oracle.adfinternal.model.portlet.binding.ActivityPortletModelWrapper.getPortletRendition(ActivityPortletModelWrapper.java:108)
         at oracle.adfinternal.view.faces.renderkit.html.portlet.ADFPortletServlet.render(ADFPortletServlet.java:808)
         at oracle.adfinternal.view.faces.renderkit.html.portlet.ADFPortletServlet.process(ADFPortletServlet.java:635)
         at oracle.adfinternal.view.faces.renderkit.html.portlet.ADFPortletServlet.process(ADFPortletServlet.java:501)
         at oracle.adfinternal.view.faces.renderkit.html.portlet.ADFPortletServlet.doGet(ADFPortletServlet.java:444)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         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 oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         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.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         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:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.portlet.client.container.PortletRemoteException: oracle.portlet.server.container.OperationFailedException: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at oracle.portlet.client.techimpl.wsrp.WSRPBaseTerminalPipe.processException(WSRPBaseTerminalPipe.java:33)
         at oracle.portlet.client.techimpl.wsrp.WSRPGetMarkupPipe.execute(WSRPGetMarkupPipe.java:222)
         at oracle.portlet.client.techimpl.wsrp.WSRPGetMarkupPipe.pre(WSRPGetMarkupPipe.java:44)
         at oracle.portlet.client.service.pipeline.PipeContext.internalExecute2(PipeContext.java:654)
         at oracle.portlet.client.service.pipeline.PipeContext.access$000(PipeContext.java:51)
         at oracle.portlet.client.service.pipeline.PipeContext$1.run(PipeContext.java:502)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$Worker.runTask(ModifiedThreadPoolExecutor.java:391)
         at oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$Worker.run(ModifiedThreadPoolExecutor.java:416)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.portlet.server.container.OperationFailedException: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at oracle.portlet.wsrp.v2.ServerToWSRPv2.getMarkup(ServerToWSRPv2.java:2779)
         at oracle.portlet.client.connection.wsrp.ActivityServerWrapper.getMarkup(ActivityServerWrapper.java:1812)
         at oracle.portlet.client.techimpl.wsrp.WSRPGetMarkupPipe.execute(WSRPGetMarkupPipe.java:117)
         ... 22 more
    Caused by: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.wsrp.v2.OperationFailedException: oracle.portlet.server.container.OperationFailedException: javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
         at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeJaxbToSoap.getMarkup(WSRP_v2_Markup_PortTypeJaxbToSoap.java:141)
         at oracle.portlet.wsrp.v2.ServerToWSRPv2.getMarkup(ServerToWSRPv2.java:2611)
         ... 24 more
    Caused by: oracle.portlet.wsrp.v2.soap.OperationFailed
         at oracle.portlet.wsrp.v2.soap.runtime.WSRP_v2_Markup_PortType_getMarkup_Fault_SOAPSerializer.deserializeDetail(WSRP_v2_Markup_PortType_getMarkup_Fault_SOAPSerializer.java:299)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserializeSOAP11(SOAPFaultInfoSerializer.java:133)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserialize(SOAPFaultInfoSerializer.java:95)
         at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:194)
         at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:148)

    Hi All,
    Even I am trying to achieve something similar and get the same error.
    I created a simple JSR 286 portlet with view.jspx and edit.jspx in Portlet Producer Application. And trying to consume that portlet in WebCenter Portal Application using WSRP.
    The producer application gets deployed without any errors and I am able to register that application in WebCenter portal application using WSRP.
    I used the content presenter taskflow in Producer Application to grab a html from UCM. Consumed that (drag & drop) remote portlet in home.jspx of the Webcenter Portal Application.
    When I run the WebCenter Portal, I get this error on console and in browser:
    javax.portlet.faces.BridgeException: oracle.jbo.NoDefException: JBO-25002: Definition portletone.html.viewPageDef of type Form Binding Definition is not found.
    javax.portlet.PortletException: doBridgeDispatch failed: error from Bridge in executing the request
    at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:675)
    at javax.portlet.faces.GenericFacesPortlet.doRenderDispatchInternal(GenericFacesPortlet.java:638)
    at javax.portlet.faces.GenericFacesPortlet.doView(GenericFacesPortlet.java:274)
    at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:328)
    Sometimes I don't see this error when I restart my WLS but the portlet doesn't display any content from UCM either.
    I am deploying the applications on Integrated Weblogic Server.
    Detail description of what my code is in this post: Error with content presenter task flow in Portlet Producer application
    Thanks,
    Win

  • Problem loading /portlet

    I'm having troubles accessing the /portal URL on a new JES install, WinXP. All other servers are fine. I can access the AppServer, WebServer, Directory and Identify servers per the documentation on how to verify installation.
    When I try to access the http://FQDN:80/portal URL, I received this message:
    Server Error
    This server has encountered an internal error which prevents it from fulfilling your request. The most likely cause is a misconfiguration. Please ask the administrator to look for messages in the server's error log.
    Looking through the Webserver logs, I see this at startup time:
    [26/Jun/2004:02:24:31] info ( 252): WEB2798: [portal] ServletContext.log(): WEB4110: Invalid PUBLIC ID: -//Sun Microsystems, Inc.//DTD Web Application 1.2//EN
    [26/Jun/2004:02:24:36] failure ( 252): WebModule[portal]: WEB2783: Servlet /portal threw load() exception
    javax.servlet.ServletException: WEB2778: Servlet.init() for servlet desktopServlet threw exception
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3464)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3746)
    After that, any attempt to access the /portal URL throws an Exception in the logs.
    Any ideas on how to get the /portal app to correctly load?
    Thanks!

    ok now we're 9 month later..
    Im facing the same problem.. someone must have a solution
    nine[opt/SUNWwbsvr/https-nine.googa.com]$ ./stop;./start
    server has been shutdown
    Sun ONE Web Server 6.1SP5 B06/23/2005 17:36
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_04] from [Sun Microsystems Inc.]
    info: WEB0100: Loading web module in virtual server [https-nine.googa.com] at [amserver]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-nine.googa.com] at [ampassword]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-nine.googa.com] at [amcommon]
    info: WEB0100: Loading web module in virtual server [https-nine.googa.com] at [amconsole]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-nine.googa.com] at [search]
    warning: CORE3283: stderr: Failed to create debug directory
    warning: CORE3283: stderr: Failed to create debug directory
    warning: CORE3283: stderr: Failed to create debug directory
    warning: CORE3283: stderr: Failed to create debug directory
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:16:922 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Constructing a new instance of SSOTokenManager
    info: CORE3282: stdout: 12/19/2006 05:17:17:053 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Obtained Grappa SSO Provider
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:17:074 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Obtained DPRO SSO Provider
    info: CORE3282: stdout: 12/19/2006 05:17:17:105 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: DataLayer: number of retry = 3
    info: CORE3282: stdout: 12/19/2006 05:17:17:108 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: DataLayer: retry interval = 1000
    info: CORE3282: stdout: 12/19/2006 05:17:17:111 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: DataLayer: retry error codes = []
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:17:160 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: AdminUtils: Initialize admin info
    info: CORE3282: stdout: Got LDAPServiceException code=19
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.loadServerConfiguration(DSConfigMgr.java:436)
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.getDSConfigMgr(DSConfigMgr.java:162)
    info: CORE3282: stdout: at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:76)
    info: CORE3282: stdout: at com.sun.identity.security.AdminTokenAction.getSSOToken(AdminTokenAction.java:241)
    info: CORE3282: stdout: at com.sun.identity.security.AdminTokenAction.run(AdminTokenAction.java:158)
    info: CORE3282: stdout: at java.security.AccessController.doPrivileged(Native Method)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:217)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:17:344 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Crypt.static{}: Encryptor class= com.iplanet.services.util.JSSEncryption
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:19:302 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Intilize CryptoManager in JSSEncryption.java
    info: CORE3282: stdout: 12/19/2006 05:17:19:324 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ocspCheck value in JSSEncryption : false
    info: CORE3282: stdout: 12/19/2006 05:17:20:618 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Crypt.static{}: Encryptor class= com.iplanet.services.util.JSSEncryption
    info: CORE3282: stdout: 12/19/2006 05:17:20:628 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: Crypt.static{}: Encryptor class= com.iplanet.services.util.JSSEncryption
    info: CORE3282: stdout: 12/19/2006 05:17:20:638 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: AdminTokenAction::getSSOToken Exception reading from serverconfig.xml
    info: CORE3282: stdout: java.lang.NullPointerException
    info: CORE3282: stdout: at java.lang.String.<init>(String.java:479)
    info: CORE3282: stdout: at com.sun.identity.security.AdminTokenAction.getSSOToken(AdminTokenAction.java:242)
    info: CORE3282: stdout: at com.sun.identity.security.AdminTokenAction.run(AdminTokenAction.java:158)
    info: CORE3282: stdout: at java.security.AccessController.doPrivileged(Native Method)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:217)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:20:648 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: AdminTokenAction::run Unable to get SSOToken from serverconfig.xml
    info: CORE3282: stdout: 12/19/2006 05:17:20:651 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: AdminTokenAction: App user name or password is empty
    info: CORE3282: stdout: 12/19/2006 05:17:20:667 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: AdminTokenAction: FATAL ERROR: Cannot obtain Application SSO token.
    info: CORE3282: stdout: Check AMConfig.properties for the following properties
    info: CORE3282: stdout: com.sun.identity.agents.app.username
    info: CORE3282: stdout: com.iplanet.am.service.password
    warning: CORE3283: stderr: Failed to create debug directory
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:20:823 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SMSEntry: Special User Set: []
    info: CORE3282: stdout: 12/19/2006 05:17:20:833 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SMSEntry: cache enabled: true
    info: CORE3282: stdout: 12/19/2006 05:17:20:835 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SMSEntry: DN notification enabled: false
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:20:949 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SMSLdapObject: proxy enable value: false
    info: CORE3282: stdout: 12/19/2006 05:17:20:965 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: in DSConfigMgr.getNewFailoverConneciton()
    info: CORE3282: stdout: 12/19/2006 05:17:20:971 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: SMSEntry: Unable to initalize(exception):
    info: CORE3282: stdout: java.lang.NullPointerException
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.getHostName(DSConfigMgr.java:373)
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.getNewFailoverConnection(DSConfigMgr.java:291)
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.getNewConnection(DSConfigMgr.java:253)
    info: CORE3282: stdout: at com.iplanet.services.ldap.DSConfigMgr.getNewAdminConnection(DSConfigMgr.java:212)
    info: CORE3282: stdout: at com.sun.identity.sm.ldap.SMDataLayer.initLdapPool(SMDataLayer.java:183)
    info: CORE3282: stdout: at com.sun.identity.sm.ldap.SMDataLayer.<init>(SMDataLayer.java:99)
    info: CORE3282: stdout: at com.sun.identity.sm.ldap.SMDataLayer.getInstance(SMDataLayer.java:113)
    info: CORE3282: stdout: at com.sun.identity.sm.ldap.SMSLdapObject.initialize(SMSLdapObject.java:159)
    info: CORE3282: stdout: at com.sun.identity.sm.ldap.SMSLdapObject.<init>(SMSLdapObject.java:124)
    info: CORE3282: stdout: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    info: CORE3282: stdout: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    info: CORE3282: stdout: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    info: CORE3282: stdout: at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    info: CORE3282: stdout: at java.lang.Class.newInstance0(Class.java:350)
    info: CORE3282: stdout: at java.lang.Class.newInstance(Class.java:303)
    info: CORE3282: stdout: at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:216)
    info: CORE3282: stdout: at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:20:989 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: WARNING: SMSEntry: error in instantiation of: com.sun.identity.sm.ldap.SMSLdapObject Message: Configuration Manager error: {0}
    info: CORE3282: stdout: 12/19/2006 05:17:20:998 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: missing resource: sms-UNKNOWN_EXCEPTION_OCCURRED
    info: CORE3282: stdout: 12/19/2006 05:17:20:999 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SMSEntry: Using default JAXRPC implementation
    warning: CORE3283: stderr: Failed to create debug directory
    info: CORE3282: stdout: 12/19/2006 05:17:21:174 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: WARNING: SMSJAXRPCObject: Registering for notification via URL failed: Cannot find notification URL.
    info: CORE3282: stdout: Using polling mechanism for updates
    info: CORE3282: stdout: 12/19/2006 05:17:21:189 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: SOAP Client: Message being sent:<?xml version="1.0" encoding="UTF-8"?>
    info: CORE3282: stdout: <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns0="http://isp.com/types" xmlns:ns1="http://java.sun.com/jax-rpc-ri/internal" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><env:Header></env:Header><env:Body><ans1:getRootSuffix xmlns:ans1="http://isp.com/wsdl"></ans1:getRootSuffix></env:Body></env:Envelope>
    info: CORE3282: stdout: 12/19/2006 05:17:21:222 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: Naming Initialization failed.
    info: CORE3282: stdout: java.lang.NullPointerException
    info: CORE3282: stdout: at java.lang.String.<init>(String.java:479)
    info: CORE3282: stdout: at com.sun.identity.security.AdminPasswordAction.run(AdminPasswordAction.java:86)
    info: CORE3282: stdout: at java.security.AccessController.doPrivileged(Native Method)
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.<clinit>(NamingService.java:131)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:605)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:531)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getPlatformServerList(WebtopNaming.java:295)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidServerURL(JAXRPCUtil.java:175)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidURL(JAXRPCUtil.java:107)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.call(SOAPClient.java:165)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.send(SOAPClient.java:294)
    info: CORE3282: stdout: at com.sun.identity.sm.jaxrpc.SMSJAXRPCObject.getRootSuffix(SMSJAXRPCObject.java:369)
    info: CORE3282: stdout: at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:262)
    info: CORE3282: stdout: at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:21:235 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: Can't get naming table
    info: CORE3282: stdout: java.lang.NullPointerException
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.updateNamingTable(NamingService.java:197)
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.updateNamingTable(NamingService.java:186)
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.getNamingTable(NamingService.java:174)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:605)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:531)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getPlatformServerList(WebtopNaming.java:295)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidServerURL(JAXRPCUtil.java:175)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidURL(JAXRPCUtil.java:107)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.call(SOAPClient.java:165)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.send(SOAPClient.java:294)
    info: CORE3282: stdout: at com.sun.identity.sm.jaxrpc.SMSJAXRPCObject.getRootSuffix(SMSJAXRPCObject.java:369)
    info: CORE3282: stdout: at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:262)
    info: CORE3282: stdout: at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:21:247 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: missing resource: null
    info: CORE3282: stdout: 12/19/2006 05:17:21:249 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: missing resource: null
    info: CORE3282: stdout: 12/19/2006 05:17:21:250 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: WARNING: JAXRPCUtil:getValidServerURL: Unable to get platform server
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.getNamingTable(NamingService.java:176)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:605)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:531)
    info: CORE3282: stdout: at com.iplanet.services.naming.WebtopNaming.getPlatformServerList(WebtopNaming.java:295)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidServerURL(JAXRPCUtil.java:175)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidURL(JAXRPCUtil.java:107)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.call(SOAPClient.java:165)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.send(SOAPClient.java:294)
    info: CORE3282: stdout: at com.sun.identity.sm.jaxrpc.SMSJAXRPCObject.getRootSuffix(SMSJAXRPCObject.java:369)
    info: CORE3282: stdout: at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:262)
    info: CORE3282: stdout: at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:21:261 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: WARNING: JAXRPCUtil: No vaild server found
    info: CORE3282: stdout: 12/19/2006 05:17:21:263 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: ERROR: SMSJAXRPCObject:getRootSuffix:Exception:
    info: CORE3282: stdout: java.rmi.RemoteException: no-server-found
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.JAXRPCUtil.getValidURL(JAXRPCUtil.java:115)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.call(SOAPClient.java:165)
    info: CORE3282: stdout: at com.sun.identity.jaxrpc.SOAPClient.send(SOAPClient.java:294)
    info: CORE3282: stdout: at com.sun.identity.sm.jaxrpc.SMSJAXRPCObject.getRootSuffix(SMSJAXRPCObject.java:369)
    info: CORE3282: stdout: at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:262)
    info: CORE3282: stdout: at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    info: CORE3282: stdout: at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    info: CORE3282: stdout: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    info: CORE3282: stdout: at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    info: CORE3282: stdout: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    info: CORE3282: stdout: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    info: CORE3282: stdout: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    info: CORE3282: stdout: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    info: CORE3282: stdout: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: CORE3282: stdout: 12/19/2006 05:17:21:602 PM GMT-04:00: Thread[main,5,main]
    info: CORE3282: stdout: CachedSubEntries::getInstance DN: ou=iPlanetAMClientDetection,ou=services,o=unknown-suffix
    info: CORE3282: stdout: 12/19/2006 05:17:21:611 PM GMT-04:00: Thread[Thread-1,5,main]
    info: CORE3282: stdout: SOAP Client: Message being sent:<?xml version="1.0" encoding="UTF-8"?>
    info: CORE3282: stdout: <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns0="http://isp.com/types" xmlns:ns1="http://java.sun.com/jax-rpc-ri/internal" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><env:Header></env:Header><env:Body><ans1:objectsChanged xmlns:ans1="http://isp.com/wsdl"><int_1 xsi:type="xsd:int">1</int_1></ans1:objectsChanged></env:Body></env:Envelope>
    info: CORE3282: stdout: 12/19/2006 05:17:21:613 PM GMT-04:00: Thread[Thread-1,5,main]
    info: CORE3282: stdout: ERROR: Can't get naming table
    info: CORE3282: stdout: java.lang.NullPointerException
    info: CORE3282: stdout: at com.iplanet.services.naming.service.NamingService.updateNamingTable

  • JSF Problem with portlet

    Hello. I am using jsf 1.2 with struts 2 (for portlet support) in weblogic. Jsf is used trough struts 2 jsf-plugin. In weblogic i am getting this error :
    >
    javax.portlet.PortletException
    at com.bea.portlet.container.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:143)
    at org.apache.struts2.portlet.result.PortletResult.executeRenderResult(PortletResult.java:200)
    at org.apache.struts2.portlet.result.PortletResult.doExecute(PortletResult.java:91)
    at org.apache.struts2.dispatcher.StrutsResultSupport.execute(StrutsResultSupport.java:185)
    at com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:355)
    Truncated. see log file for complete stacktrace
    javax.servlet.ServletException: weblogic.servlet.jsp.CompilationException: Failed to compile JSP /WEB-INF/jsp/view/index.jsp
    index.jsp:16:26: No property editor found for the bean "javax.el.ValueExpression".
    <h:panelGrid columns="3">
    ^-^
    index.jsp:17:29: No property editor found for the bean "javax.el.ValueExpression".
    <h:outputText value="Employee Id:" />
    ^------------^
    index.jsp:22:26: No property editor found for the bean "javax.el.ValueExpression".
    <h:outputText value="Back" />
    ^----^
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:247)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:391)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    Truncated. see log file for complete stacktrace
    weblogic.servlet.jsp.CompilationException: Failed to compile JSP /WEB-INF/jsp/view/index.jsp
    index.jsp:16:26: No property editor found for the bean "javax.el.ValueExpression".
    <h:panelGrid columns="3">
    ^-^
    index.jsp:17:29: No property editor found for the bean "javax.el.ValueExpression".
    <h:outputText value="Employee Id:" />
    ^------------^
    index.jsp:22:26: No property editor found for the bean "javax.el.ValueExpression".
    <h:outputText value="Back" />
    ^----^
    at weblogic.servlet.jsp.JavelinxJSPStub.compilePage(JavelinxJSPStub.java:296)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:200)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:164)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:235)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:391)
    Truncated. see log file for complete stacktrace
    >
    My JSP file :
    >
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
    <f:view>
    <html>
    <!-- todo: make header variable -->
    <head>
    <title>JSF Integration Examples</title>
    </head>
    <body>
         <h1>Modify Employee</h1>
         <h:form>
              <h:panelGrid columns="3">
              <h:outputText value="Employee Id:" />
              </h:panelGrid>
              <h:outputLink>
                   <h:outputText value="Back" />
              </h:outputLink>
         </h:form>
    </body>
    </html>
    </f:view>
    I don't have any faces-config and my web.xml looks like :
    >
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app id="bookmark-portlet">
    <!-- JavaServer Faces Servlet Configuration, not used directly -->
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>JspSupportServlet</servlet-name>
    <servlet-class>org.apache.struts2.views.JspSupportServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- JavaServer Faces Servlet Mapping, not called directly -->
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.action</url-pattern>
    </servlet-mapping>
    </web-app>
    Does someone know why i get this error?

    Someone with any solution?

  • Problem on Portlet for list of workbooks

    Hi,
    I followed the instruction on 'How to use OracleAS Discoverer with OracleAS Portal' on Oracle Application Server Discoverer Configuration Guide.
    1. I check make sure the portlet provider URL works.
    2. I registered the portlet Provider.
    3. I refresh the portlet provider after I applied the changes.
    But according to the document, the Discoverer list of workbooks and Discoverer workbook portlets should show up at portlet staging folder.
    Any suggestion or tip?

    Did you add a portlet to your portal? Add the portlet, then click edit defaults and the Discoverer Portal Provider walks you thru a dialogue.

  • Portlet to Portlet Problem : listening portlet not updating

    Having trouble with an Adaptive Portlet. I have a broadcaster that when selecting a link in a data grid will pass and ID to the Listening portlet and display info based on that passed ID. (nothing hard). This code works fine in our development environment but will not refresh the listing portlet in our production environment. I have displayed the form filed in the listing portlet that receives the ID from the broadcasting portlet and it is passing a value. but again the listening portlet will not display any other information. I have also put code into the listing portlet so as not to cache the portlet. Our dev environment is runningPlumtree portal server (5.0.2) and is also the portlet server. Plumtree Content Server. .NET framework 1.1 and 1.0.NET Framework Hotfix(kb824629), jsharp redistributable(ENU) v1.0.4205 jsharp redistributable 1.1Plumtree .NET web Controls (version 3.0.1.0 under support info in control panel/add-remove programs)Plumtree Enterprise web development kitPlumtree studio Our Production Portal server.Plumtree portal server (5.0.2).NET framework 1.1 and 1.0.NET Framework Hotfix(kb824629), jsharp redistributable(ENU) v1.0.4205 Our Production Portlet server.Plumtree portal server (5.0.2) .NET framework 1.1 and 1.0.NET Framework Hotfix(kb824629), jsharp redistributable(ENU) v1.0.4205 jsharp redistributable 1.1Plumtree .NET web Controls (version 3.0.1.0 under support info in control panel/add-remove programs)Plumtree Enterprise web development kitPlumtree portlet suite for exchange 2000 v3.0.2Gagit framework for Excel Any Ideas as to what is missing????

    I figured out the issue. Portlet B only listens for the event if it is visible. The event gets fired when portlet A is maximized, so portlet B is no longer visible.
    thanks

  • Problem changing portlet state and mode programmatically

    I am trying to change state/mode of a portlet programmatically in backing file.
    My request is, when a portlet is changed to EDIT, I want it be maximized. Based on that, I put logic in handlePostbackData() like this,
    if (PortletBackingContext.getWindowMode().
    equalsIgnoreCase("EDIT")) {
    // change to EDIT mode
    PortletBackingContext.setupStateChangeEvent(
    WindowCapabilities.MAXIMIZED.getName());
    } else {
    PortletBackingContext.setupStateChangeEvent(
    WindowCapabilities.NORMAL.getName());
    However, I found during handlePostbackData() phase, the mode I retrieved by PortletBackingContext.getWindowMode() was the one before the clicking.
    Say for view mode, I click the EDIT button and I expect in the handlePostbackBack() phase, I could get "edit" returned by PortletBackingContext.getWindowMode(). But actually it returned "VIEW".
    The mode keeps in the previous mode till it enters the preRender() phase. But as API, setStateChangeEvent() should be used in handlePostbackData() ONLY.
    Any suggestions?

    you should be able to do this through declerative IPC
    of course you can do this via the IDE but you can also add it to the .portlet file. Something like this...
    <netuix:handleEvent event="onEdit"
    fromSelfInstanceOnly="true"
    eventLabel="handleOnEditGeneric_el">
    <netuix:changeWindowState newState="maximized"/>
    </netuix:handleEvent>
    Chris Jolley
    Portal Architect

Maybe you are looking for

  • BP - Add additional Identification type as BPCCOD in Customer during replication

    Hi All, We have transferred all business partner from R/3 to CRM via initial load. We have Sold to party & Ship to party which are also assigned the BP role of Financial Partner and being used to create the Dispute Cases however we are unable to crea

  • Prime 2.0 to 2.1 installation

    I am currently trying to upgrade Prime 2.0 to 2.1, following the instructions in the release notes.  Having some issues uploading the 2.1 patch to the Virtual controller.  Seems to be a syntax error/fat finger;  Does anyone have any tips or tricks to

  • Guest portal redirection with mulple PSNs

    Hi All In a distributed deployment where there is more than one PSN's how do we have a common url for guest redirection when doing a CWA (assuming no load balancer is used for the PSNs)? usually the redirection url would be 'https://<ise01.fqdn/guets

  • OpenBrWindow behavior in FireFox

    I have a link that is opening a "popup" page from my root directory in a custom sized and positioned window. Code looks like this: <a href="popupList_AF.php" onclick="MM_openBrWindow('popupList_AF.php','AFLicenseList','scrollbars=yes,resizable=yes ,w

  • Obtaining the SAP NetWeaver version programmatically

    Hello, Can anyone tell me if (and how) I can obtain the version of the SAP NetWeaver application server from a Java program? I have an application running on several platforms, one of which is SAP NetWeaver. The application has a system information p