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!

To display this page, Firefox must send information that will repeat

702488Mar 25 2011 — edited May 13 2011
Hello,

In my ADF application, I often receive alerts from browser asking to reload page (e.g. To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier...), which is very annoying for users.

I already saw a post discussing the issue here : 841649 but this doesn't apply to my case :

I have a panelBox object which I want to show a google map object in. I use a fragment like this :
<af:componentDef var="attrs">
    <af:xmlContent>
      <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
        <description>Content for Widget.</description>
        <attribute>
          <description>Widget Backing object</description>
          <attribute-name>widgetObject</attribute-name>
          <attribute-class>com.test.view.model.dashboard.widget.MapWidget</attribute-class>
          <required>false</required>
        </attribute>
      </component>
    </af:xmlContent>
    <af:panelStretchLayout id="pslmm" topHeight="0">
      <f:facet name="top">
        <af:poll id="mappoll" immediate="true" pollListener="#{attrs.widgetObject.pollCheck}" interval="60000"/>
      </f:facet>
      <f:facet name="center">
        <af:inlineFrame id="if2mx" source="#{attrs.widgetObject.gviewData}" binding="#{attrs.widgetObject.mapFrame}"/>
      </f:facet>
    </af:panelStretchLayout>
  </af:componentDef>
The panelBox displays well, and the af:poll is used to refresh the map every minute. The pollCheck method calls 'AdfFacesContext.getCurrentInstance().addPartialTarget(mapFrame);' to reload inlineFrame

The refresh goes well but after a few refreshes, I get the 'To display this page, Firefox must send information that will repeat' message

What could be the cause?

Thanks

Stephane
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 10 2011
Added on Mar 25 2011
4 comments
1,750 views