ADF: JDeveloper 11.1.1.0.1 build 5188, RichPanelDashboard

Hi,
I am a frequent user, first time poster ;-) (So please go easy on me).
I have found a reference to this ADF faces rich component on the following link:
http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e10684/oracle/adf/view/rich/component/rich/layout/RichPanelDashboard.html
However, I can't see the implementation of this in the version of JDeveloper I am running, which I believe it is the latest build:
Build JDEVADF_MAIN.BOXER_GENERIC_081203.1854.5188
Can any guru shed the light on this component, and please if you know if that component will make a debut, or was it removed.
Just for background I am looking into a component drag and drop, and this component seem promising with rendering a re-order components.
Looking forward to any replies.

Hi Frank,
Appreciate your answer, I have to admit thought that the ADF Rich-client demo have provided me good answers on how to handle component DnD, but apparently the RichPanelDashboard is making it easier.
Thanks for this.

Similar Messages

  • ADF: JDeveloper 11.1.1.0.1 build 5188, af:pageTemplate usage

    Hi All,
    I was wondering whether the use of the af:pageTemplate is mandatory / assumed, as I am trying to create a component drag and drop example based on the ADF Rich Component Demo, without the use of the pageTemplate but having problems.
    Maybe the question should be, what is the requirement for the implementing drag and drop (i.e. what the parent components should be), I am trying to build an example without the use of pageTemplate and any of the other layout components, and I am having problems with moving panelBoxes with 2 different panelGridLayout, I will post my example, if one can confirm that the use of pageTemplate is optional.
    Thanks in advance
    Edited by: yoyo_au on Jan 13, 2009 11:04 AM
    Edited by: yoyo_au on Jan 13, 2009 11:20 AM

    Hi Shay,
    Appreciate your answer to clarify this, however I am trying to move components, here is what I have, which is really a simple example, based on the Tag Guide > panelBox Demo in the ADF rich client demo:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "[http://www.w3.org/TR/html4/loose.dtd">|http://www.w3.org/TR/html4/loose.dtd]
    <%@ page contentType="text/html;charset=windows-1252"%>
    &lt;%@ taglib uri="<a href="http://java.sun.com/jsf/core"" class="jive-link-external">http://java.sun.com/jsf/core" prefix="f"%&gt;
    &lt;%@ taglib uri="<a href="http://java.sun.com/jsf/html"" class="jive-link-external">http://java.sun.com/jsf/html" prefix="h"%&gt;
    &lt;%@ taglib uri="<a href="http://xmlns.oracle.com/adf/faces/rich"" class="jive-link-external">http://xmlns.oracle.com/adf/faces/rich" prefix="af"%&gt;
    &lt;f:view&gt;
    &lt;af:document title="Test Drag and drop"&gt;
      &lt;af:form id="myForm"&gt;
       &lt;af:panelGroupLayout layout="scroll" id="bigParent"&gt;
        &lt;af:panelGroupLayout layout="scroll"
                             inlineStyle="width: 225px; height: 200px; padding: 5px;"
                             id="parent1"&gt;
         &lt;af:dropTarget actions="MOVE"
                        dropListener="#{panelDragHandler.handleDrag}"&gt;
          &lt;af:dataFlavor flavorClass="javax.faces.component.UIComponent"/&gt;
         &lt;/af:dropTarget&gt;
         &lt;af:panelBox text="Drag This" showDisclosure="true" id="child1"&gt;
          &lt;af:componentDragSource/&gt;
         &lt;/af:panelBox&gt;
        &lt;/af:panelGroupLayout&gt;
        &lt;af:panelGroupLayout layout="scroll"
                             inlineStyle="width: 225px; height: 200px; padding: 5px;"
                             id="parent2"&gt;
         &lt;af:dropTarget actions="MOVE"
                        dropListener="#{panelDragHandler.handleDrag}"&gt;
          &lt;af:dataFlavor flavorClass="javax.faces.component.UIComponent"/&gt;
         &lt;/af:dropTarget&gt;
         &lt;af:panelBox text="Or Drag This" showDisclosure="true" id="child2"&gt;
          &lt;af:componentDragSource/&gt;
         &lt;/af:panelBox&gt;
        &lt;/af:panelGroupLayout&gt;
       &lt;/af:panelGroupLayout&gt;
      &lt;/af:form&gt;
    &lt;/af:document&gt;
    &lt;/f:view&gt;
    {code}
    along side, I have specified a managed bean with session scope, with only a function with handle drag, this function is a copy from the demo, the example in the behaves as I need:
    {code:java}
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import oracle.adf.view.rich.change.MoveChildComponentChange;
    import oracle.adf.view.rich.context.AdfFacesContext;
    import oracle.adf.view.rich.datatransfer.DataFlavor;
    import oracle.adf.view.rich.datatransfer.Transferable;
    import oracle.adf.view.rich.dnd.DnDAction;
    import oracle.adf.view.rich.event.DropEvent;
    import org.apache.myfaces.trinidad.change.ChangeManager;
    import org.apache.myfaces.trinidad.change.ComponentChange;
    import org.apache.myfaces.trinidad.change.ReorderChildrenComponentChange;
    import org.apache.myfaces.trinidad.context.RequestContext;
    public class PanelDragHandler {
      public DnDAction handleDrag(DropEvent dropEvent) {
        Transferable dropTransferable = dropEvent.getTransferable();
        UIComponent movedComponent =
          dropTransferable.getData(DataFlavor.UICOMPONENT_FLAVOR);
        FacesContext context = FacesContext.getCurrentInstance();
        if ((movedComponent != null) &&
            DnDAction.MOVE.equals(dropEvent.getProposedAction())) {
          UIComponent dropComponent = dropEvent.getDropComponent();
          UIComponent dropParent = dropComponent.getParent();
          UIComponent movedParent = movedComponent.getParent();
          UIComponent rootParent;
          ComponentChange change;
          // If it is a DND within the same container (which is not usual in this particular demo)
          //  use the child reorder change
          if (dropComponent == movedParent) {
            System.out.println("Same component dnd");
            // build the new list of ids, placing the moved componen after the dropped component
            String movedLayoutId = movedParent.getId();
            String dropLayoutId = dropComponent.getId();
            List<String> reorderedIdList =
              new ArrayList<String>(dropParent.getChildCount());
            for (UIComponent currChild : dropParent.getChildren()) {
              String currId = currChild.getId();
              if (!currId.equals(movedLayoutId)) {
                reorderedIdList.add(currId);
                if (currId.equals(dropLayoutId)) {
                  reorderedIdList.add(movedLayoutId);
            change = new ReorderChildrenComponentChange(reorderedIdList);
            rootParent = dropParent;
          } else {
            System.out.println("Different component dnd");
            MoveChildComponentChange moveChange =
              new MoveChildComponentChange(movedComponent, dropComponent);
            ChangeManager cm =
              RequestContext.getCurrentInstance().getChangeManager();
            // add the change
            rootParent = moveChange.add(context, cm);
            change = moveChange;
          // apply the change to the component tree immediately
          change.changeComponent(rootParent);
          // redraw the shared parent
          AdfFacesContext.getCurrentInstance().addPartialTarget(rootParent);
          return DnDAction.MOVE;
        } else {
          return DnDAction.NONE;
    {code}Now, I am having 2 problems with the above:
    1. The MOVE is working as a copy.
    2. The component copied loses some functionality (e.g. I can't disclose the panel box once I moved it).
    Now, the example in the demo is enclosed in a few layer of components also a pageTemplate, I was wondering if those were factors into why the drag and drop is working in the demo, but not in my example.
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Deploying ADF/JDeveloper portlets in WebSphere Portal

    I'd like to use ADF/JDeveloper to build my application, but my customer is already heavily invested on a WebSphere Portal deployment platform.  The JDeveloper/ADF documentation has extensive information on creating portlets in various ways, but they all seem focused exclusively on deploying in an Oracle platform.  I have tried both the "Standards-Based" as well as the "JSF Portlet Bridge".  I have tried to deploy the portlets in WebSphere Portal using both the generated WAR file, as well as by registering the WSRP producer.  None work.
    With the WAR file, WebSphere Portal seems to import the WAR file just fine, and I can add a portlet to a page, but the portlet always shows as "unavaiable"
    With the WSRP producer, I can get something to show in the page, but the functionality within the portlet doesn't seem to work.
    I've searched extensively, but cannot locate any documentation or use cases for deploying portlets from JDeveloper into WebSphere Portal.  Does anyone have any thoughts?

    Dvohra21, again, I apreciate the effort, but I think you're missing the fundamental question.
    You've given me two types of articles/links.  Some are generic WebSphere Portal documentation about deploying a portlet from a WAR file.  Others are Oracle articles about who to generate portlets in JDeveloper, with examples deploying in Oracle/WebLogic servers.   Unfortunately I don't have a problem with either of those.
    I CAN deploy a portlet WAR file in WebSphere Portal, and sucessfully add it to a Portal page.  I have done that with multiple WAR files generated from Rational Application Developer.
    I CAN produce a WAR file from JDeveloper, following the instructions in the same resources you included, plus a few others.
    The problem is, the WAR file from JDeveloper, does not successfully run on WebSphere Portal.  I create a simple Hello World portlet in JDeveloper, and I can generate a WAR file from it, and seemingly deploy to WebSphere Portal.   However when I add it to a Portal page, it always displays only a blank box with the text "This portlet is unavailable".  This is in the same exact portal page, where the portlet created with Rational Application Developer shows up just fine right along side it.
    Bottomline is, although there is a great deal of information an demos about generating portlets from JDeveloper within an Oracle environment, I could not find a SINGLE ONE, that goes through an end to end scenario where it is deployed in WebSphere Portal.  Nothing in this forum, nothing in Oracle docs, and nothing I can find on a Google search.

  • Jdeveloper 11g Migration to 11.1.1.0.1 build 5188

    Hi Jdev team,
    1) the new update 11.1.1.0.1 build 5188 is out, but on the download site the filenames are still jdevstudio11110install.exe and jdevstudio11110install.bin
    Has some one a good explanation for this dirty updating approach?
    2) After installing the new Jdev version (11.1.1.0.1 build 5188) I migrated my project (project files, jstl, weblogic-application.xml, and what ever) and build the new EAR file. Now I am trying to redeploy this EAR on our integration system (which is already out to the customer) WLS103 on OEL 5.x . Of course I get the following exception:
    ERR An error occurred during activation of changes, please see the log for details.
    ERR Error weblogic.management.DeploymentException:
    ERR Error oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener
    INFO Success Selected Deployments were updated.
    I think because the ADF Runtime Libs are still in version adf.oracle.domain(1.0,11.1.1.0.0)
    So what is the official migration path?
    Thanks for any advices,
    Andreas.

    Hi John,
    Just start the online update tool.
    You will see a hint: „JDeveloper 11g (11.1.1.0.1) is Aviable.“
    Press the „Select All“ button, then „Next“.
    Check the „Summery“ box.
    Click Finish and see the „Confirm Exit“ text and press „Yes“ to restart JDeveloper.
    And now after running this course and rechecking the result against your (very comprehensible) assumptions tell me something about professionalism...
    I wasn't talking about any whatever update in the future, but about this very real one.
    Sorry John, but sarcasm from your site is absolutely inopportune at this point.
    Andre

  • How to custom SQL in ADF JDeveloper 10.1.3.3

    How to custom SQL in ADF JDeveloper 10.1.3.3 as follows,
    SELECT A.attribute1,
    A.attribute2,
    B.attribute1,
    B.attribute2,
    FROM table1 A,
    table2 B
    WHERE A.id = B.id
    Thanks
    sumury

    Hi,
    this isn't really a question as it is not obvious where you want to customize it. My initial idea was to suggest SQL Worksheet to you, but then this most likely isn't what you are looking for.
    http://blogs.oracle.com/shay/2007/03/02
    Frank

  • Oracle ADF & Jdeveloper.

    Any one have an idea that which institute other than oracle school, give training for Oracle ADF & Jdeveloper in Dubai, United ARab Emirates.
    I am using Forms10g and would like to upgrade to Jdeveloper.I have no experience in Java.

    I've also written a book, and given I come from a Forms background, it should address many of the issues those coming from a Forms background hit when learning ADF. The book itself is aimed at getting developers up to speed as quickly as possible,
    Quick Start Guide to Fusion Development: JDeveloper and Oracle ADF is now published. See http://www.mhprofessional.com/product.php?isbn=0071744282
    See also http://www.oracle.com/technetwork/developer-tools/jdev/formsdesignerj2ee-092778.html which is a page specifically for Forms developers who are picking up JDeveloper and Oracle ADF.
    Regards
    Grant

  • Does current Oracle Maven Repo supports 11.1.1.7 ADF JDeveloper ?

    Hi All
    Does current Oracle Maven Repo (OMP) supports 11.1.1.7 ADF JDeveloper ?
    What's the minimum JDeveloper version that OMP currently support ?
    Thanks

    Right now, the Oracle Maven Repository only contains artifacts to support ADF 12.1.3.  We will be adding newer versions as they become available but there are currently no plans to add support for 11g-based releases.

  • Can't install jdeveloper 11g build 5188

    I have downloaded new build 5188 base install.
    My system:
    OpenSUSE 11.0 x86_64
    java-1.6.0-sun-1.6.0.u10
    After running java -jar jdevstudio11110install.jar. Next select New Middleware Home->Complete Install>select local jdk 1.6.0_10 i get next error:
    "Insufficient disk space! Installer requires:
    132M for the Middleware Home at /app/Oracle/Middleware,
    670M for the product at /app/Oracle/Middleware/jdeveloper, /app/Oracle/Middleware/wlserver_10.3 and 705M temporary workspace at /tmp
    There is only 1Mb available at /app/Oracle/Middleare/wlserver_10.3."
    Very strange error because i have nearly 200Gb free on /app partition.

    Looks like a 64-bit problem to me. I've checked the installation guide but found nothing.
    If you haven't done so and if possible, could you try to install it with a 32-bit JDK?
    --olaf                                                                                                                                                                                                                                                                                                                                                                                   

  • I got this error when migrate from Jdev11gTp4 into JDev 11g (Build 5188)

    Hello,
    when i migrated my application from Jdev11gTp4 into JDeveloper 11g (Build 5188) , i got this error but it's not understandable for me and I am new in jdeveloper and adf application
    C:\JDeveloper\mywork\Application14\FOO\ViewController\public_html\myFolder\myPage .jspx
    Error(7,4): The public type __myPage_32__jspx must be defined in its own file
    Thanks
    GreenApple
    Edited by: greenApple on Jan 15, 2009 9:18 AM

    Hello,
    when i migrated my application from Jdev11gTp4 into JDeveloper 11g (Build 5188) , i got this error but it's not understandable for me and I am new in jdeveloper and adf application
    C:\JDeveloper\mywork\Application14\FOO\ViewController\public_html\myFolder\myPage .jspx
    Error(7,4): The public type __myPage_32__jspx must be defined in its own file
    Thanks
    GreenApple
    Edited by: greenApple on Jan 15, 2009 9:18 AM

  • Why is ADF Bindings node not displayed in Expression Builder window?

    Hello,
    I'm using Oracle JDeveloper Studio Edition Version 11.1.1.1.0, and I've created a Fusion Web Application and I've configured ADF Authentication and Security for my web project, using the provided wizard.
    On a certain page, I've placed a Go Link component, and I'm trying to edit the Text and Destination Property using EL Expressions. When I open the Expression Builder window all I can see are the following nodes: ADF Controller Objects, ADF Managed Beans, JSF Managed Beans and JSP Objects, but no ADF Bindings. I need to access the securityContext properties, and from what I've read in B31974-03, I need ADF Bindings.
    Also, I've tryied using the search field from the Expression Builder windows, without any luck.
    This is probably a newbie problem, but I really can't figure it out. Please help.
    Bogdan.

    Hi,
    maybe your problem is that you don't have created pageDef related with your page. Try right click on your page and Go To Page Definition. It will create the related pageDef if it does not exist.
    Hope this helps
    Joseba

  • How to get multiple out parameters from a pl/sql stored procedure in ADF Jdeveloper 11g release2

    I´m trying to call from AppModuleImpl a stored procedure from my oracle DB which receives one input parameter and returns 5 out parameters. 
    I´m using jdeveloper 11g release2  ADF and I have created a java bean "ProRecallPlatesBean " with the atributes and accesors and I serialize it. just like in this article http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvgen.htm#sm0297
    This is my code so far:
    public ProRecallPlatesBean getCallProRecallPlates(String numPlates) {
    CallableStatement st = null;
    try {
              // 1. Define the PL/SQL block for the statement to invoke
              String stmt = "begin CTS.Pk_PreIn.proRecallPlates(?,?,?,?,?,?); end;";
              // 2. Create the CallableStatement for the PL/SQL block
              st = getDBTransaction().createCallableStatement(stmt,0);
              // 3. Register the positions and types of the OUT parameters
              st.registerOutParameter(2,Types.VARCHAR);
    st.registerOutParameter(3,Types.VARCHAR);
    st.registerOutParameter(4,Types.VARCHAR);
    st.registerOutParameter(5,Types.VARCHAR);
    st.registerOutParameter(6,Types.VARCHAR);
    // 4. Set the bind values of the IN parameters
    st.setString(1,numPlates);
    // 5. Execute the statement
    st.executeUpdate();
    // 6. Create a bean to hold the multiple return values
    ProRecallPlatesBean result = new ProRecallPlatesBean();
    // 7. Set values of properties using OUT params
    result.setSpfVal(st.getString(2));
    result.setTransportTypeVal(st.getString(3));
    result.setTransportCompanyVal(st.getString(4));
    result.setCompanyDescrVal(st.getString(5));
    result.setDGAPrint(st.getString(6));
    // 8. Return the result
    return result;
    } catch (SQLException e) {
    throw new JboException(e);
    } finally {
    if (st != null) {
    try {
    // 9. Close the JDBC CallableStatement
    st.close();
    catch (SQLException e) {}
    In Jdeveloper I went into AppModule.xml JAVA>Client Interface section and expose "getCallProRecallPlates" Then I can see "getCallProRecallPlates" in Data Controls, I drag and drop it to a JSF page, an input text component and a button are generated in order to put in there the procedure input parameter (numPlates).
    I don't know if I'm on the right track.
    When I click the button, the "result" variable is supposed to be filled with data from the stored procedure. I want each of those values to be displayed in Output text or input text adf components but I dont know how. Thank you very much in advance I´m a newbie and i'll appreciate your help!

    What version are you on?
    Works fine for me on my 11g:
    SQL> create or replace procedure testxml (clob_out out clob)
      2  is
      3     l_clob   clob;
      4     l_ctx    dbms_xmlquery.ctxhandle;
      5  begin
      6     l_ctx := dbms_xmlquery.newcontext ('select * from dual');
      7     l_clob := dbms_xmlquery.getxml (l_ctx);
      8     clob_out := l_clob;
      9     dbms_xmlquery.closecontext (l_ctx);
    10  end testxml;
    11  /
    Procedure created.
    SQL>
    SQL> variable vout clob;
    SQL>
    SQL> exec testxml (:vout)
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print vout
    VOUT
    <?xml version = '1.0'?>
    <ROWSET>
       <ROW num="1">
          <DUMMY>X</DUMMY>
       </ROW>
    </ROWSET>But definitely you can optimize your proc a bit: Try
    create or replace procedure testxml (clob_out in out nocopy clob)
    is
       l_ctx    dbms_xmlquery.ctxhandle;
    begin
       l_ctx := dbms_xmlquery.newcontext ('select * from dual');
       clob_out := dbms_xmlquery.getxml (l_ctx);
       dbms_xmlquery.closecontext (l_ctx);
    end testxml;
    /

  • While deploying BPEL Process through JDeveloper 10.1.3.2 the BUILD FAILS

    While deploying a BPEL Process through JDeveloper 10.1.3.2 it says :-
    BUILD FAILED
    D:\Development_mywork\MemoApplication\Memo\MemoProcess\build.xml:79: A problem occured while connecting to server "boomidevp.alshaya.com" using port
    "7778":
    ### Steps to Reproduce ###
    The Connections Tab, Application Server details are as follows :-
    Type Tab :-
    Connection Type :- Oracle Application Server 10g 10.1.3
    Authentication Tab :-
    UserName :- oc4jadmin
    Password :- bpel123
    Connection Tab :-
    Connect to :- Single Instance
    Host Name :- 172.16.100.85
    OPMN Port :- 6004
    OC4J Instance Name :- oc4j_soa
    The Test was successful.
    The Integration Server details are as follows :-
    Connection Tab :-
    App. Server :- Same thing created earlier.
    Host Name :- 172.16.100.85
    Port Number :- 7778
    The Test Connection was successful.
    After the above steps, went to Application Navigator Tab and tried to Deploy a BPEL Process.
    While deploying this BPEL Process through JDeveloper 10.1.3.2 it says :-
    BUILD FAILED
    D:\Development_mywork\MemoApplication\Memo\MemoProcess\build.xml:79: A problem occured while connecting to server "boomidevp.alshaya.com" using port
    "7778":
    Alshaya eGroup Business Solutions Team
    www.alshaya.com

    Disable your proxy settings in JDeveloper.
    Marc

  • JBO-29000 error in running a JSP - Oracle JDeveloper 10.1.2.1.0 (Build 1913

    Hi,
    I was working on the Oracle ADF workshop with the above version of JDeveloper and Oracle 9i as database. As per the instructions in the workshop I developed a JSP, browseCustomers.jsp and Ran it.
    In the "Enbedded OC4J Sever" panel in the JDeveloper I got the following:
    =====================================================
    Embedded OC4J startup time: 6564 ms.
    05/11/06 20:14:03 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    Target URL -- http://24.99.98.235:8988/CustomerMaintenance-ViewController-context-root/browseCustomers.do
    Nov 6, 2005 8:14:12 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Nov 6, 2005 8:14:12 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Nov 6, 2005 8:14:12 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='view.ApplicationResources', returnNull=true
    Nov 6, 2005 8:14:15 PM org.apache.struts.action.RequestProcessor processException
    WARNING: Unhandled Exception thrown: class oracle.jbo.JboException
    Nov 6, 2005 8:27:10 PM org.apache.struts.action.RequestProcessor processException
    WARNING: Unhandled Exception thrown: class oracle.jbo.JboException
    In the IE Browser I got the following (I just mentioned first two lines):
    ==================================================
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.toplink.exceptions.SessionLoaderException, msg=Exception Description: Several [1] SessionLoaderExceptions were thrown:
    I browsed through the discussion forum for a possible solution to this kind of problem but I'm lost. I didn't find any definite solution to this. Can anyone help me to get rid of this error.
    Thanks
    Agnivb

    Any resolution on this?

  • Oracle Flexfields in ADF/Jdeveloper.

    Hi,
    I have a requirement for which Oracle Flexfields looks like a possible fit. I got some documents on the usage of flexfields , however it is not clear from this, the implementation part of it.
    the doc talks about using the oracle flex fields in the <<New Gallery>>-->Business Tier-->ADf business components-->"Flexfield Business Components", but I guess this option does not come as a standard.
    I am trying to figure out how this option can be installed into ADF so that the flexfields functionality can be tried out. If anybody has come across a similar requirement , please do respond to this.
    Thanks.
    Raghu.

    Hi Shay,
    Thanks for the response . Iam trying to build the flex fields feature into a product that has been developed with ADF fusion framework. I came across some links which suggests that the flexfields is possible through ADF like the one I have pasted below. also some docs might be available here which suggests that the flexfields can be integrated with ADF.
    http://aseng-wiki.us.oracle.com/asengwiki/display/ATG/Drop+3+Design-Time+Flow
    regards
    Raghu
    Edited by: user10299698 on Aug 31, 2010 2:36 AM

  • Error: java.lang.NoClassDefFoundError in Jdeveloper 9.0.5.2.(Build 1618)

    Error: java.lang.NoClassDefFoundError org.apache.struts.taglib.BaseHandlerTag
    Hi,
    We are using Jdeveloper10g version 9.0.5.2(Build 1618) as our IDE. We have a struts based controller architecture in our project. So we frequently use struts tags in our jsp pages. The application is working fine but sometimes when i do some changes in one of or a number of the jsp files in Jdeveloper , after recompiling i get the above error in number of jsps though i haven't touched those jsps at all.
    I found a work around for this problem by just shutting down the Jdeveloper and again starting it.
    It gives such kind of errors for only stuts based tag containing jsps.
    Do anybody has any solution for this persistent problem.
    My whole team is facing this problem.
    With Warm Regards,
    Datta.

    No anyone knows?

Maybe you are looking for

  • HOW TO BLOCK THE PURCHASE ORDER AND MARK FOR DELETION ?

    Hi ,                     During the Creation of the Purchase order in the SAP System... After creation of the Purchase order should be blocked and a work item is created for the approver. If the Approver approves the Order then the Order is Unblocked

  • Task Request not updating in Outlook 2010

    My manager has sent me a few Task Requests in Outlook 2010. He receives an email message saying I've accepted the task but he cannot see any notes I write in the task, even though he ticks the "keep an updated copy of the task on my task list".  He c

  • PL/SQL block  -- commit

    will multiple commit 's in between my code, like the one below, affect the speed of the code ? Code not working so puttting commit after 500 records --- Vaibhav      IF l_commit_count > 499      THEN           l_commit_count :=0;           COMMIT;   

  • Space management in exchange

    what kind of metrics do you need to monitor when it comes to capacity monitoring of exchange 2010? is it just the actual remaning disk space, or do you define thresholds for each element of exchange, i.e. mailbox database, public folder database, lo

  • HT5234 what if the if the light does not turn on when plug in?

    What if the the light does not turn on when you connect you adapter to you macbook pro?