i´ve got an problem (Orion 1.5.3) when using the RequestDispatcher to forward an request to an servlet. But only when cookies are disabled.
....
String url = response.encodeURL( "/testServlet?hello=World" );
request.getRequestDispatcher( url ).forward(request, response);
...
// content of url:
// cookies disabled: /testServlet;jsessionid=FB..GE?hello=World
// cookies enabled: /testServlet?hello=World
// so far everything is fine
...
if the cookies are enabled then i can access in the testServlet the parameter "hello" with getParameter("hello"), but if cookies are disabled the "hello"-parameter is not set (getParameter("hello") returns null), but all the other Parameters from the origin request are set correctly.
Any ideas? Is this an bug in the orion server?
Thanks in advance,
Oliver