Is it normal that conversationId keeps increasing after each page request?

Posted by Casper on Stack Overflow See other posts from Stack Overflow or by Casper
Published on 2010-05-14T20:23:26Z Indexed on 2010/05/15 2:14 UTC
Read the original article Hit count: 383

Filed under:
|
|
|
|

Hi I'm building a Seam application and have a question:

I got a stateless session bean (default seam scope) with a delete and a select method. A page which contains a datamodel loads and got links to select and delete each row (both links refer to the actionmethods in the bean).

The delete method deletes the selected row from the list and returns null (reloads page). The select method loads a new page where the selected row can be edited.

Each time a link in the datamodel is clicked and an action gets fired, the conversationId gets increased. Is this normal behaviour since im not even in a conversation? If it ain't normal behaviour, what's best practice to prevent this from happening?

© Stack Overflow or respective owner

Related posts about seam

Related posts about seam-conversation