Hi buddies,
I need to pass data among servlets and I find it very hard.
What I have so far is passing it via session variable but that crashes my app now and then and seem to be bad approach. How do you transfer data among servlets without crashing the application?

Thanks

Recommended Answers

All 2 Replies

You hardly use session. Maybe you should put it in request and use request dispathcer to send the request to another jsp or servlet.
Use the request.setAttribute(String, Object) and the request.getAttribute(String)

That is :)
I was loading session while I should have used request object.
Ah, you baby in JSP ;)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.