Re: [S2] hibernate and interceptors

2007-05-04 Thread Laurie Harper
jalal udeen wrote: can any body tell how to display the session value in jsp using struts tag i have set the session value in action class as session.setAttribute("candidatename",request.getParameter ("name")); i want to display this name in jsp page pls help me and send me example

Re: [S2] hibernate and interceptors

2007-05-04 Thread jalal udeen
hi can any body tell how to display the session value in jsp using struts tag i have set the session value in action class as session.setAttribute("candidatename",request.getParameter ("name")); i want to display this name in jsp page pls help me and send me example code its very ur

Re: [S2] hibernate and interceptors

2007-05-03 Thread Dave Newton
--- Flemming Seerup <[EMAIL PROTECTED]> wrote: > I'm using > org.springframework.orm.hibernate3.support.OpenSessionInViewFilter > with this mapping in web.xml > > >hibernateFilter >/* > > > > It's working just fine for my actions, but my > interceptors fails with lazy >

[S2] hibernate and interceptors

2007-05-03 Thread Flemming Seerup
I'm using org.springframework.orm.hibernate3.support.OpenSessionInViewFilter with this mapping in web.xml hibernateFilter /* It's working just fine for my actions, but my interceptors fails with lazy loading errors. How do I hibernate enable my interceptors ? ---