Hi all,
What I am trying to do is handle two different form of responce. One is static xml files with their relevent xslt sheet which is handled by the DispatchServlet, the other is dynamically create xml data and then attach the relevent xslt sheet dependant on the data gathered. This is done in a separte
servlet QueryServlet. However, I would like all responces to client requests to be given by DispatchServlet so I can handle all errors gracefully from the same point all the time.
I have just been through the code for the CocoonServlet to try to get a bit of inspuration for my own web servlet (As sugested by Bill in reply to my last post). But, apart from finding an astonishing lack of commenting (My professor would have them shot!), I could not see anything here to help.
Now I know there are two options. But I am a little unsure which would be the better.
1) sendRedirect(). But will this then be able to return the subsequent data grenerated in QueryServlet? (Remembering that I want to send the responce form DispatchServlet)
2) forward(). But in all the examples I have seen, this is the last thing to be done and I'm unclear where the path can or will end.
Any help

, comments

, critisism

or direction pointing to manuals

would be greatfully received.
Cheers
Bill