Help

Controls

PermLinkWikiLink

Built with Seam

You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.

Forum: Seam Users Forum ListTopic List
06. Jun 2008, 23:14 CET | Link

First, I think seam is great. I've been using EJBs since 1.0 (yeah I'm old) and EJB 3.0 and plain old Java Beans plus Seam is HOT! Now with the Portal Bridge you guys are hit the spot yet again.

Now here's my question, I searched for a possible previous reply, so my big apologies if I missed it.

I noticed that generated Conversation Ids were globally generated (every conversation got a the next increment in the counter, regardless of session within which the user was operating -- eg., user a and user b are both logged into a system, the user a starts a conversation gets id 2, user b starts a conversation its gets id 3, etc).

Now I don't want to jump to conclusions, but are conversations really global in other words if user a has conversation 2 and user b has conversation 3 can user a get access to conversation 3 by knowing the id. Yeah, I could test this, but any answer that saves me time of creating a test would be greatly appreciate if someone has the answer right off the top of their head.

Thanks.

 

-----------------------------------
Edwin J. Jaufmann, Jr.
Open Frameworks

2 Replies:
07. Jun 2008, 01:06 CET | Link

Conversations are linked to a session. Knowing another users conversation id will not give you access to their conversation data, at least not short of already having their session id.

07. Jun 2008, 01:23 CET | Link

Thanks for the reply. It's as I thought.

 

-----------------------------------
Edwin J. Jaufmann, Jr.
Open Frameworks