Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way by which different managed beans in different faces-config.xml placed in multiple WARs.

share|improve this question
1  
try to read your question and if something doesn't feel right, update it. ;) – Bozho Mar 18 '10 at 17:27
You have X bean in A.war and you want it to communicate in Y bean in B.war?? Not sure what the question is. – Drew Mar 18 '10 at 17:50
Can a managed bean name "Apple" in Apple.war be consumed in "Banana" bean in Banana.war – Nrusingha Mar 18 '10 at 18:50

1 Answer

No, they reside in different contexts.

Depending on the servlet container, there are ways to share / synchronize the two contexts.

Using ServletContext.getContext(path) would return the other context. There you can obtain all application-scoped beans. (The context must be configured to be accessible from other contexts).

But this is too much hassle for something that should be achieved in other ways.

If you want your two applications to communicate with each other, make them a channel - via web services, JMS, etc.

Update: Tomcat's Signle-Sign-On Valve might be helpful (if using tomcat)

The Single Sign On Vale is utilized when you wish to give users the ability to sign on to any one of the web applications associated with your virtual host, and then have their identity recognized by all other web applications on the same virtual host.

share|improve this answer
Let me explain you the scenario. We are in the process of developing a common framework. Lets say I have a common war which takes user input and password and on submit I forward it to different applications which are in different wars. – Nrusingha Mar 19 '10 at 13:46
@Nrusingha that makes is a bit more clear. check my update – Bozho Mar 19 '10 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.