Could someone show me some example code for how to add a session bean to an
HttpSession? This is the psuedo-code for what i want to do ....
--//UserSession is a Session EJB
UserSession us = new UserSession();
us.setName("MYNAME");
HttpSession sess = request.getSession(true);
sess.add(us);
I know this code is wrong, but I am looking for what the actual code to do
this would be.
Thanks...
- RE: Adding a Session bean to an HttpSession Frank Apap
- RE: Adding a Session bean to an HttpSession Alex Paransky
- RE: Adding a Session bean to an HttpSession Mike Cannon-Brookes
