>    RequestDispatcher dispatcher =
> context.getRequestDispatcher("http://authtest.internal.ca.com/";);
>    dispatcher.forward(request,response);


getRequestDispatcher(String path) requires you to supply the path that is 
relative to the context root.

Try to do getRequestDispatcher("/") and see how it goes. Actually if you read 
the stack trace it will tell you exactly what went wrong:

java.lang.IllegalArgumentException: Path http://authtest.ca.boeing.com/ does
not start with a "/" character

Cheers,

-- 
Victor


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to