Question

I am using Apache MyFaces 2.0. I notice that a cookie oam.Flash.RENDERMAP.TOKEN is getting created for each view, even though I am not using Flash scope and I have set org.apache.myfaces.DISABLE_FLASH_SCOPE=true.

How can I remove the oam.Flash.RENDERMAP.TOKEN cookie? This is WebSphere specific issue

Was it helpful?

Solution 2

The issue is fixed with WebSphere Fix Pack V8.0.0.6. Refer http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg1PM73173

OTHER TIPS

It's old thread, but it took me a while to find an answer, so I leave this for others... Should be:

org.apache.myfaces.FLASH_SCOPE_DISABLED

not DISABLE_FLASH_SCOPE. So in detail, add:

<context-param>
    <param-name>org.apache.myfaces.FLASH_SCOPE_DISABLED</param-name>
    <param-value>true</param-value>
</context-param>

to your web.xml.

Works good since 2.0.5.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top