Title: Problem in using RequestDispatcher

Hello all,

I have problem in using RequestDispatcher. See example of my code.

RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/protected/servlet/inquiry/InqInvc");
dispatcher.forward(request,response);

This code works well, as anyone expect. But see another code.

RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/protected/servlet/inquiry/InqInvc?occr=1");
dispatcher.forward(request,response);

This results in 404 not found. What happen ??? Is this RequestDispatcher limitation ... or this is just a bug ???
By the way, I'm using WebLogic4.5. Thank you in your interest.

Siros

Reply via email to