Re: [OT] Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-08 Thread Ravi Mangalagiri
Its all working now. I moved the OpenSessionInViewFilter all the way up in web.xml and it works fine.. Thanks a lot -ravi On 3/7/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Ravi Mangalagiri wrote: > I did move OpenSessionInViewFilter all the way > up. no luck

Re: [OT] Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Dave Newton
--- Ravi Mangalagiri wrote: > I did move OpenSessionInViewFilter all the way > up. no luck Did you also try setting the init-params? What is your current_session_context_class set to? connection.release_mode? transaction.factory_class? d. __

Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Mike Baroukh
just to know : why do you speak about "loanReconciliation.action" ? Your web.xml speaks about "*.do" ... Mike Ravi Mangalagiri a écrit : Dave, Thats what I though initially but it doesn't look that way... When I go to my action meaning - http://localhost:7001/ESS/queryReport/popup/loa

[OT] Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Dave Newton
--- Ravi Mangalagiri wrote: > Thats what I though initially but it doesn't look > that way... To me that makes it look even *more* that way since now the filter is active because you've defined the filter after the initial Action. When you now call an Action from within a JSP the filter wo

Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Ravi Mangalagiri
Dave, Thats what I though initially but it doesn't look that way... When I go to my action meaning - http://localhost:7001/ESS/queryReport/popup/loanReconciliation.action I get a lazy-load exception. but then I create a new jsp and goto the same action using s:action as show bel

Re: [OT] Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Ravi Mangalagiri
Dave, I did move OpenSessionInViewFilter all the way up. no luck Mike, I don't have any *.do in web.xml . all my actions use *.action suffix -ravi On 3/7/07, Ravi Mangalagiri <[EMAIL PROTECTED]> wrote: I did .. same thing On 3/7/07, Dave Newton <[EMAIL PROTECTED]

Re: [OT] Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Ravi Mangalagiri
I did .. same thing On 3/7/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Ravi Mangalagiri wrote: > Thats what I though initially but it doesn't look > that way... To me that makes it look even *more* that way since now the filter is active because you've defined the filter

Re: Struts 2.0.6, Spring 2.0.2, Hibernate 3.2 Issue

2007-03-07 Thread Dave Newton
--- Ravi Mangalagiri <[EMAIL PROTECTED]> wrote: > When I debug . looks like the OpenSessionInViewFilter > keeps the session open after the jsp is painted. I don't > understand why the session is not kept open around the actual > action method executed. This is a Hibernate issue, not S2. I a