11g TP2 : subversion instability

I encountered problems when committing changes in subversion.
Ofter subversion return a message "authentification failed".
I'm using a local repository, i'm alone. I manage two applications in the repository. One applications contains more than 5000 sources. The connection is well and i'm able to test it with the connection properties wizard.
Sometimes update working copy (that always working fine) help and i'm able to continue committing after a new error message is displayed.
Committing with the command line always work fine. Sometimes i have to enclose my directory with "" and sometimes it is not necessary.
It is very strange !

Hi micwic
I think this is the same question and answer as another post that I just responded to. I suspect that you have a space in the name of your local repository 'my repos' or similar. If you are accessing the repository locally then commit will fail as you have encountered. This is a bug I've reported.
You say you are using a local repository. Does this mean you are not using apache or svnserve to access your repository? I know that in previous posts you have experienced performance issues and wonder if this is the reason.
rgds
Susan

Similar Messages

  • ADF BC project migration errors from 10.1.3.3 - 11g TP2

    Hi all,
    I have a current 10.1.3.3 project using ADF BC and Faces that I have been testing to migrate to 11g TP2. My question is specifically about the BC project. Although the migration wizard completes without error or warning, I end up with some issues in the migrated project. There is one that I have not been able to rectify (short of re-creating my BC objects) where attempting to use the Application Module gives weird errors about view links not being specified properly. I have tried migrating the project several times and receive the same issue each time.
    My question: should I just wait for TP3 and re-attempt the migration to see if the issue goes away, or should I provide the application to someone at Oracle to have a look at? I can provide a checkout only password for our Subversion repository if that would help as well.
    Best regards,
    John

    If you open the project in the 11g preview it will automatically update the metadata and generate the deployment XML in the new format. Alternatively you should be able to open the 10.1.3.3 metadata in the 11g preview's runtime.
    The biggest issue you may encounter in the upgrade besides replacing the libraries and ensuring you are using JDK5 is the removal of the code deprecated in previous releases.
    Doug

  • 11g TP2 ADF Task Flows and Transaction Management

    I'm wondering how ADF Task Flow Transaction Management works vis-a-vis database sessions and using stored procedure calls in an environment with connection pooling. I haven't written the code yet but am looking for a better understanding of how it works before I try.
    Example:
    I create a bounded adf task flow. I set the "transaction" property to "new-transaction" and the "data control scope" to "isolated".
    As the task flow is running, the user clicks buttons that navigate from page to page in the flow. Each button click posts the page back to the app server. On the app server a backing bean method in each page calls a stored procedure in a database package to modify some values in one or more tables in the database. The procedure does not commit these changes.
    Each time a backing bean makes a stored procedure call will it be in the same database session? Or will connection pooling possibly return a different database connection and therefore a different database session?
    If the transaction management feature of the adf task flows guarantees me that I will always be in the same database session then I don't have to write any extra code to make this work. Will it do that or not?

    I don't know if it is documented in the adf documentation currently available for 11g TP2 but what you ask for is a normal transaction management with connection pooling and i can't imagine it is not implemented in ADF BC layer like it is in JPA or other persistence layer.
    A transaction will always be executed in the same session. Normally your web session will stay in the same session even you start more than one transaction. You don't have to write any code to manage the session pooling. It is a good practices to customize it at the persistence layer during installation depending on your infrastructure.
    Take a look into Fusion Developer Guide ... i'm sure you will find some better explanations about this.

  • MyFaces Tobago and Jdev 11g TP2 [BUG??]

    Hi I was trying Jdev 11g TP2 and wanted to test the components from MyFaces Tobago, but when I added the Tobago JAR's the design view stop showing the preview of the standard jsf components and show them like unrecognized tags; and I haven't add any tobago component. what am I doing wrong? is it a BUG?
    EDIT:
    The thing same happens with the MyFaces Tomahawk Components. Is there any problems with MyFaces Compnents?

    Hi,
    make sure you use JSF 1.2 versions of the component set because JDeveloper 11 uses JSF 1.2. Beside of this chances are likely that this is an issue in teh current JDev 11 build. There is a TP3 planned for December, Can you verify if the issue reproduces then ?
    Frank

  • 11g TP2 and NamedStoredProcedureQuery

    OK, this has me baffled.
    Documentation on stored procedures and JPA is often unclear, missing, or less relevant (ie., lots of examples for Hibernate XML mapping files, but nothing re: annotations). However TP2 of TopLink now appears to provide some support for stored procedures.
    First, several simple questions...
    1) Is it possible to represent a stored procedure as one would a table, using annotations?
    2) If yes, can these annotations be used to create an object (DAO, interface, etc.) as one would with a table? Basically, an object that represents the returned rows and includes the annotated knowledge to execute the stored procedure?
    Assuming the answer to both questions is yes, then...
    Clearly, for stored procedures we're not generally talking about something that needs to be persisted.
    Here's what I have...
    A legacy database containing a number of tables and two stored procedures. I'm tasked with creating a "library" for java apps (and servlets) that need access to this data. In many cases, calling one of the two SPs will suffice. As it stands, Spring is a big player for several existing tools that talk to the DB, with each using its own access methods.
    I'm done with the tables and have created interfaces, dao, class, etc.
    I'm stuck trying to decide how to handle the stored procedures. I could write POJOs to handle them, but then I lose some of the built-in convenience features of JPA/Hibernate/Spring/etc. I would prefer that developers using the library be able to access everything in a similar manner, whether table or SP.
    Let's assume the following (simple) stored procedure, and, for the sake of simplicity, all input and output columns are INT....
    CREATE PROCEDURE withParams (item INT)
    BEGIN
      SELECT distinct column1,column2
        FROM results
        WHERE column1=item
    END
    GO Should something along the following "work" for the withParams procedure?
    import javax.persistence.Entity;
    import oracle.toplink.annotations.NamedStoredProcedureQuery;
    @Entity
    @NamedStoredProcedureQuery(name="getInfoUsingInput", procedureName="withParams",
             resultClass=Test.class,
             procedureParameters={@StoredProcedureParameter(queryParameter="item")}
    public class Test implements java.io.Serializable {
    }-David
    Message was edited by:
    user610697

    David,
    The @NamedStoredProcedureQuery is intended to be a natural extension to JPA's @NamedQuery where the query returns a result which could either be raw data values or a mapped entity. These are basically intended to allow you to optimize the access to an entity mapped to a table.
    TopLink does support mapping onto a virtual table through the use of stored procedures provided you have stored procedures to represent all aspects of the CRUD operations for the entity. This requires you to provide custom queries used StoredProcedureCall for all necessary operations. Your entity will continue to be mapped as if the table exists but at runtime TopLink will use your stored procedures mapping the non existent table's columns onto the IN/OUT parameters of your query.
    Does this sound like what you want or is this just a single stored procedures you want to execute and get a mapped read-only entity back?
    Doug

  • BUG? 11G Production: subversion client

    When using the plus(+) icon to add source files to subversion repository from "Pending Changes" list I got prompted for the svn repository URL. This, of course is nonsensical sense JDeveloper just queries the svn repository to determine that these source files need to be added to the repository. Pressing cancel from this dialog resulted in JDeveloper performing the svn add operations correctly. So this is just a nuisance. :-)

    I was able to determine that migrating to the production release did not migrate the subversion URL and connection information to the subversion navigator (but the projects were able somehow to login to subversion properly). I have re-entered my URL and connection information and all seems to be well.

  • [SOLVED] JDeveloper 11g TP2 - Authentication (JAZN) problem...

    Hi all,
    when I select Identity Store under Authentication (JAZN) in
    Embedded OC4J Server Preferences and click New... nothing happens...
    I can't create new identity store...
    Windows XP (java 1.5.0_11)

    Soviet,
    Ok. This is a known issue (Bug# 6399289) related to working with embedded OC4J server settings when the embedded server configuration directory name contains spaces.
    This would occur by default on Windows due to the fact that in 11g we now, by default, save your jdeveloper-specific system settings in the %USERPROFILE% directory. For example, on my laptop this is set to:
    USERPROFILE=C:\Documents and Settings\smuenchThis means that the first time you start JDeveloper 11g, it will create its system directory here:
    C:\Documents and Settings\smuench\Application Data\JDeveloper\system11.1.1.0.20.46.84and the embedded OC4J server settings live in the subdirectory:
    C:\Documents and Settings\smuench\Application Data\JDeveloper\system11.1.1.0.20.46.84\o.j2ee\embedded-oc4jSince this directory has a space in the name you are running into the problem.
    Here is the solution.
    Startup jdeveloper.exe using the -singleuser flag as described in this blog entry I wrote:
    http://radio.weblogs.com/0118231/2007/06/05.html#a840
    Assuming you have extracted JDeveloper 11g Tech Preview 2 into a directory whose path does not contain spaces in the name like:
    C:\jdev11gtp2Then when you startup JDeveloper the next time with the "-singleuser" flag, it will create its system directory as a subdirectory of the installation directory, and you won't run into the problem.

  • Bug in JSF 1.2 RI using in JDev 11g

    Hi,
    We have found a bug in the JSF RI version used by JDev 11g TP2:
    In com.sun.faces.application.ApplicationImpl.createValidator, a MessageFormat is created using an erroneous pattern : created validator of type ''{0''}. This method is called by oracle.adfinternal.view.faces.util.rich.ConverterValidatorRegistrationUtils.addValidatorById. So, when the logging level is set to FINE, this crashes our application.
    FYI, this seems to be corrected in the last version (1.2_06) of the JSF RI.
    We tried replacing the jsf-api.jar and jsf-ri.jar files in lib\java\shared\oracle.jsf\1.2 with that new version but we are getting compilation errors in our JSPs.
    Before we spend time trying to do that, can you please tell me if that sounds like the right thing to do (or if there is another solution). Also, can you please confirm that the subsequent versions of JDev will include a corrected version of the JSF RI.
    Thanks.
    Olivier

    Hi,
    the right place is JDeveloper/jsf-ri for JDeveloper. I'll file a bug
    Frank

  • ADF 11.1.1.6 with subversion issues

    HI
    We are using the Jdeveloper verion 11.1.1.6 and Vesion support for Subversion 11.1.6.38.61.92.
    Some times we are facing problems on Update and Checkout . some times both of them will not work .
    I want to know about the above issues occuring frequently due to the verisons(Jdev and subversion) missmatch ? or any additional configration missing ?
    Appriciate responses
    thanks in advance.

    Hi,
    *11g R1*
    Subversion 1.5, SVNKit 1.2      --> Certified
    Subversion 1.6 2 , SVNKit 1.3 2 --> Certified
    *11g R2*
    Subversion 1.6, SVNKit 1.3 --> Certified
    Frank

  • Problem Use Query Bind Parameters with binding

    Hi Developers
    i use JHeadstart 11g TP2
    I want use Lov Group by Query Bind Parameters. when i use simple value like "P_PARENT_ID=10" , Query Lov view By this parameter right but when i use Binding like "P_PARENT_ID=#{bindings.inputtext1.inputValue}" and inputtext1 value is 10 but result is wrong and show me all record , my where clause of my view is (Acc.ID_FK =:P_PARENT_ID OR :P_PARENT_ID is null)
    this method work in Jheadstart 10g but not in 11g
    Regards,
    sanaei

    sanaei,
    Did this really work in 10.1.3 without custom templates?
    Assuming inputtext1 is in your base page, then #{bindings.inputtext1.inputValue} should return null when used as query bind var in the LOV, since the LOV page as its own binding container (stored under request attribute "bindings").
    In R11, we have a cleaner way to pass parameters to an LOV:
    - In the LOV group, define a parameter, for example "parentIdParam"
    - In the LOV group, use the following expression as Query Bind Parameters:
    P_PARENT_ID=#{pageFlowScope.parentIdParam}
    - In the lov item of the base group, add a parameter named "parentIdParam" and set the value to #{bindings.inputtext1.inputValue}
    That should work.
    Steven Davelaar,
    JHeadstart Team.

  • Using unbounded item value for rendering expression in a region

    Hi there,
    I use jheadstart 11g tp2.
    I have a question about a group in application definition module which all of the items are unbounded.
    For 3 of them I use text input lov which related to lov that is bounded to a view.
    I use the return value of the lov for filling unbounded items and I want to use that filled unbounded item for rendering expression of a region.
    my problem is after using lov I can't use the binding value of the unbound item (which filled by returning value from lov) for another part of the the group
    I have a region that should be visible and invisible based on that item
    Please let me know is there anyway for doing this or not?
    Thanks for your help
    Setareh Rajaei

    the unbound item has a variable binding in the page def, so you can refer to the value of the unbound item using the expression
    #{bindings.[groupName][itemName].inputValue}
    Steven Davelaar,
    Jheadstart Team.

  • Af:clientListener and javascript confirm() dialog

    Hi,
    a common requirement in most of our web apps is to include a warning dialog when a user tries to delete a record, ie. if someone presses on a link to delete a record they get a javascript dialog asking them "Are you sure you want to delete this record?'. Clicking ok will delete the record, while clicking cancel will cancel the action. Our jsp code from jdev 10.1.3 is shown below:
    <af:commandLink actionListener="#{bindings.removeRowWithKey.execute}"
              action="#{viewCalStatus.deleteCalStatus}" text="Delete"
                    onclick="return confirm('Are you sure you want to delete this record?');">
        <af:setActionListener from="#{row.rowKeyStr}" to="#{requestScope.calStatusRow}"/>
    </af:commandLink>We have noticed that in 11G <af:commandLink> no longer supports any javascript events such as onClick. The suggested replacement is to use <af:clientListener>, however, it doesn't look like the same functionality can be achieved. We tried the code below, however, when the delete link is pressed, the record is submitted for deletion before the javascript dialog shows up (which we kind of expected anyway). Is there any way of achieving the same javascript functionality using <af:clientListener>? If not, what is the suggested 'best practice' for achieving similar functionality?
    <script language="JavaScript" type="text/javascript">
        function confirmDelete() {
            if (confirm('Are you sure you want to delete this record?'))
                return true;
         else
                return false;
    </script>
    <af:commandLink actionListener="#{bindings.removeRowWithKey.execute}"
              action="#{viewCalStatus.deleteCalStatus}" text="Delete">
        <af:clientListener method="confirmDelete" type="click"/>
        <af:setActionListener from="#{row.rowKeyStr}" to="#{requestScope.calStatusRow}"/>
    </af:commandLink>Thanks,
    Michael.

    Hi Michael
    Hello from sunny Perth.
    I suspect (but don't quote me) what you're looking for is described in the entire section "3.9 Sending Custom Events From the Client to the Server" in the new Web User Interface Developer's Guide for ADF, available online with JDev 11g TP2.
    I've had some limited success testing this approach, to get a commandLink to call a client side JavaScript, display a message, and when the user clicks Ok, a server side backing bean method is called to do the rest of your work. It seems to work sometimes and not others, so I'm playing around with the config.
    As for "best practice," it's a little early to start asking this of a preview release isn't it? ;)
    Happy JDevelopering in Geelong.
    Regards,
    CM.

  • Possible Bug: Business Components and packaging preferences

    I'm using JDev 11g TP2
    When I set up package preferences for business components, it is completely ignoring the package I setup for the Entity object.
    Example:
    From the menu Tools>Preferences
    Under the section Business Components>Packages.
    I set the following:
    Business Component: left blank - it uses the default [prefix].model
    Entity: entity
    Association: entity.association
    View Object: view
    View Link: view.links
    the rest have been left at default settings.
    Then I create a new diagram so I can add existing database tables to the application. I drag and drop the selected tables from the application resources to the diagram. It creates the entity objects in the [prefix].model package, not the [prefix].model.entity package like I was expecting. However the associations get created correctly in the [prefix].model.entity.association package.
    Is this possibly a bug, or just a training issue for me?
    Thanks

    No worries Ric. Unfortunately I don't have access to your latest builds but I'll still raise the issues in case they are relevant.
    Regards,
    CM.

  • Confirm delete in command button

    Hi All,
    My use case is to show a javascript confirm box after hitting the delete
    button(seems to be very basic use case). But whether I cancel it or press
    OK , the actionListener fires and corresponding row gets deleted.(Using JDev
    11g TP2).
    I found two relevant forum links on that issue but one can get no idea from those links.
    Those are
    Re: af:clientListener and javascript confirm() dialog
    RC client side events calling server side backing bean events
    Do we have a solution for the above described use case?
    Regards,
    Ghosh

    Hi Ghosh,
    Do you have delete operation binding actionListener in 'Delete' button? I think that is your possible problem.
    First at all, i supose that you have a af:popup with af:dialog to do the confirm box.
    I propose you to create a button with one af:clientListener to call a javascript function. This function have to show the af:popup. The af:dialog have a dialogListener, it allows you to detect when you click any button inside the dialog. Inside the backing function, it's possible to kwon the button type. If the button is OK, do the delete operatin binding.
    You have to know that If dialog is OkCancel type, this listener only is called if OK button is pressed (Cancel button doesn't call this function).
    I think that this structure is a solution for your use case.
    XerX

  • Error JBO-36000 in JDEV 11 TP3 when trying to use an ADF LOV Input Text

    Hi,
    I'm using JDEV 11 TP3 ( 11.1.1.0.0) and i'm trying to use an ADF LOV Input Text on a JSF Page.
    In The Business Components Browser, It works perfectly.
    If I drop my Data Control on my JSF Page as an ADF Form, it works fine, too.
    But if I drop the same Data Control as an ADF Table when I run the JSF Page and when I click on the "magnifier" icon, I've got the folliwng message :
    ERROR JBO-36000 : unexpected expression token found... Server Exception during PPR.
    Can anyone explain me this message ?
    Thanks for adavance,
    Laurent

    Hi Frank, Thanks for trying to help me,
    I tried to do the same test on JDEV 11g TP2 (I've both TP2 and TP3 installed).
    It doesn't work either on TP2 : the LOV window appears, but it appears empty, with the "Fetching Data..." message.
    And in the OC4J Server Log, I've got the following complete Error Message :
    oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator handleError
    GRAVE: Server Exception during PPR, #2
    java.lang.NullPointerException
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.<init>(JUCtrlHierNodeBinding.java:160)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierNodeBinding.<init>(FacesCtrlHierNodeBinding.java:62)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding.createNodeBinding(FacesCtrlHierBinding.java:80)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.createRootBinding(JUCtrlHierBinding.java:341)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.getRootNodeBinding(JUCtrlHierBinding.java:76)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel$2.getRowIterator(FacesCtrlHierBinding.java:769)
         at oracle.adfinternal.view.faces.model.binding.CurrencyRowKeySet._computeCurrentRowKey(CurrencyRowKeySet.java:118)
         at oracle.adfinternal.view.faces.model.binding.CurrencyRowKeySet.iterator(CurrencyRowKeySet.java:34)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRendererUtils.writePojoSelectionState(TableRendererUtils.java:195)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1040)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:925)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:599)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:255)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase$ListOfValuesDialogRenderer.encodeContent(SimpleInputListOfValuesRendererBase.java:598)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeAll(PanelWindowRenderer.java:190)
         at oracle.adfinternal.view.faces.renderkit.rich.DialogRenderer.encodeAll(DialogRenderer.java:135)
         at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:846)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase$ListOfValuesPopupRenderer.encodeAllChildren(SimpleInputListOfValuesRendererBase.java:634)
         at oracle.adfinternal.view.faces.renderkit.rich.PopupRenderer.encodeAll(PopupRenderer.java:225)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1271)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:753)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._renderPopup(SimpleInputListOfValuesRendererBase.java:418)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.renderElementContent(SimpleInputListOfValuesRendererBase.java:234)
         at oracle.adfinternal.view.faces.renderkit.rich.FormInputRenderer.encodeAllAsElement(FormInputRenderer.java:109)
         at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.encodeAll(FormElementRenderer.java:133)
         at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:846)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.renderFieldCellContents(LabeledInputRenderer.java:153)
         at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:251)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:140)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.renderDataCell(BaseColumnRenderer.java:879)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:88)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._encodeTablePPRTargets(TableRenderer.java:420)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:269)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:136)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:374)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1271)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:753)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:244)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:175)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:619)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:241)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:201)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:171)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:284)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:284)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:284)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:208)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:165)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:138)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:611)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:362)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:915)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:821)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:626)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:599)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:383)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:161)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:142)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    I've just created the table with the Wizard, I did'nt change anything on it.
    I'm running my ADF Page under Firefox 2.0.0.9.
    Thanks for your help, if you've got any idea
    Laurent

Maybe you are looking for

  • Please wait while Windows configures Crystal Reports XI Release 2

    Hello, I recently upgraded to Crystal XI Release 2. Everytime I exit designer I get the message in the subject line.  Then it goes through multiple processing steps before I can use designer. This takes about 6-7 minutes and then exits.  Anyone know

  • I cannot find the DataSource 0CRM_INTER_REC_H

    Hello experts, I am activating the InfoCube 0CSAL_C01 from the Business Content. It gets data from 0SAL_DS01 ODS, that uses these three InfoSources: - 0CRM_INTER_REC_H - 0CRM_CONTACT_OUT - 0CRM_SALES_ACT_1 I have found the DataSource for the last two

  • Template not updating meta tag info.

    I use DW MX on PC w/XP Home OS -- in the event that this info makes any difference. I updated meta tag info in a template then applied it to all the child pages. The changes were not propogated. I've looked over the info at "Template child pages are

  • Typed search bar entries are the same for each tab. How can I keep new searches different in each tab without retyping?

    How do I associate typed search bar entries specifically with the current tab only? Currently, when I type an entry into the search bar it shows up in the search box of every tab open. If I switch to a different tab, there it is. I want to switch tab

  • After install acrobat DC doesn't launch

    I'm trying to install the free trial version of Acrobat DC on my up-to-date Win Vista OS PC. After download and install, when I get to the "Launch Acrobat" interface box and press either the "launch" or "close" button nothing happens, except the inte