ok.. i have a solution

1. Add to the context the object to share in WAR1
ServletContext sc = session.getServletContext();
  | sc.setAttribute("object2Share",objectInstance);
  | 

2. In WAR2 access to the context of WAR1 with 

  | ServletContext sc2 = session.getServletContext();
  | sc2 = sc2.getContext("/WAR1");
  | 

Is necesary that the both wars have in /WEB-INF/lib the same library (content 
the class, evident) and the file \deploy\jbossweb-tomcat55.sar\context.xml have 
the value crossContext="true"

Thats all Folks!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941193#3941193

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941193


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to