Disable oam.Flash.RENDERMAP.TOKEN

I am using Apache MyFaces 2.0. I noticed that the oam.Flash.RENDERMAP.TOKEN cookie is created for each view, although I do not use the Flash scope, and I set org.apache.myfaces.DISABLE_FLASH_SCOPE=true .

How to delete oam.Flash.RENDERMAP.TOKEN cookie? This is a particular WebSphere issue.

+4
source share
2 answers

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

0
source

This is an old thread, but it took me a while to find the answer, so I leave this to others ... It should be:

 org.apache.myfaces.FLASH_SCOPE_DISABLED 

not DISABLE_FLASH_SCOPE. So add:

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

into your web.xml.

Works well with 2.0.5.

+5
source

Source: https://habr.com/ru/post/1435787/


All Articles