AFIK, You need to set the session manager in Jetty , then you can get the HttpSession instance from the Request.
Maybe we need add a option for Jetty http component.

Willem.

raul_b wrote:
Hi,
I'm new in Camel, so excuses if the answers are obvious.. :)

I'm using camel 1.3, and creating a route of the type
from("jetty:http://...";).process(new ProcessorClass());

Inside the ProcessorClass i'm trying to get hold of the servlet session:

void process(Exchange exchange) {
    ...
    HttpSession session =
((HttpExchange)exchange).getRequest().getSession();
    ...
}

It fails miserably with a "java.lang.IllegalStateException: No
SessionHandler or SessionManager". I'm wondering why this happens.. Is this
a way to solve this problem?

Can I, within Camel, get all the functionality provided by the servlets API?
>From this example, regarding sessions, it doesn't seem like..

Or am I missing something here?

Thanks,
Raul

Reply via email to