Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

error while running a page which contains a region

user8696578Jul 10 2013 — edited Jul 24 2013

Hi ADF Experts,

I am having a jsff page fragment. The fragment has panelbox(with some content and button) and a panel group layout(which contains a region).

On click of the button the panelbox is disclosed to false and the region is to be rendered.

But on page load I am getting the below exception. Earlier the page was coming fine. After dragging the region I am getting this error.

Hierarchy is as below:-

<af:panelBox text="Search Filters" id="pb1" type="stretch"

                 inlineStyle="width:inherit; height:inherit;"

                 binding="#{pageFlowScope.TreeModel.searchFilterPanelBox}"

                 partialTriggers="cb3">

<af:commandButton text="Search" id="cb3" partialSubmit="true"

                                actionListener="#{pageFlowScope.TreeModel.searchorderProposal}"/>

</af:panelBox>

<af:panelGroupLayout id="pgl15" layout="scroll" binding="#{pageFlowScope.TreeModel.searchResultsDisplay}" rendered="false"

                        partialTriggers="cb3">

   <af:region value="#{bindings.BTFSearchResults1.regionModel}" id="r1"/>

</af:panelGroupLayout>

The region contains

<af:panelGroupLayout id="pgl1" layout="scroll">

    <af:panelGroupLayout id="pgl16" inlineStyle="width:1239px; height:inherit;"

                         layout="horizontal">

<!--some content-->

</af:panelGrouplayout>

onclick of the button the region is rendered as true and the disclosure of the panel box im setting as false.

But after adding the region im getting below error.

Caused by: java.io.FileNotFoundException: MDS-01500: The MDSObject /orderproposals.jsff is an XML document and cannot be loaded using StreamedObject API.

Thanks in advance,

Roy

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 21 2013
Added on Jul 10 2013
2 comments
420 views