show us the complete stack trace

-igor


On Dec 13, 2007 9:08 PM, Ravi_116 <[EMAIL PROTECTED]> wrote:
>
> Igor,
>
> The exception happens while loading the spring config files -
>
> Caused by: java.lang.IllegalStateException: No thread-bound request found:
> Are you referring to request attributes outside of an actual web request? If
> you are actually operating within a web request and still receive this
> message,your code is probably running outside of
> DispatcherServlet/DispatcherPortlet: In this case, use
> RequestContextListener or RequestContextFilter to expose the current
> request.
>
> Here is the definition of spring beans -
>
>         <!-- a HTTP Session-scoped bean exposed as a proxy -->
>     <bean id="userContext" class="com.foo.UserContext" scope="session">
>           <!-- this next element effects the proxying of the surrounding
> bean -->
>           <aop:scoped-proxy/>
>     </bean>
>
> The init method the MyWebApplication.java (extends wicket
> AuthenticatedWebApplication)
>
>         SpringComponentInjector springComponentInjector = new
> SpringComponentInjector(this);
>         addComponentInstantiationListener(springComponentInjector);
>
> From the exception, it seems like spring is not aware of the HttpContext
> created by wicket.
> Thanks,
> Ravi
>
>
>
>
> igor.vaynberg wrote:
> >
> > i think it should work, you simply have to declare the bean as
> > scope=session in spring config
> >
> > -igor
> >
> >
> > On Dec 13, 2007 3:57 PM, Ravi_116 <[EMAIL PROTECTED]> wrote:
> >>
> >> I am a newbie to wicket. Our wicket application is integrated with Spring
> >> using the SpringComponentInjector. Is it possible to set  a UserContext
> >> bean
> >> in Spring (scoped "session") from the AuthenticatedWebSession ? Spring
> >> provides some nice AOP proxy services with spring beans.
> >> Ravi
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Using-Spring-beans-with-session-scope-tp14327328p14327328.html
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/Using-Spring-beans-with-session-scope-tp14327328p14330289.html
>
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to