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