Hi,
I am using response.sendRedirect() to redirect the URL.
The URL format is as below
http://<host 
ort>/context?<param1=val1>&<param2=val2>&<param3=val3>
code is as below
e.g.
redirectURL =
http://<host 
ort>/context<param1=val1>&<param2=val2>&<param3=val3>
[Note : runtime host, port, all params and values are getting populated correctly.]
response.sendRedirect(redirectURL);
Now , I can see the generated url in address bar with 403-forbidon error.
But if I re-entered the same url, it will work properly. It means I need to re-enter the url, then it will show the result.
Do any one have pointers to resolve this issue?
As per my analysis, if the redirect url dosen't have any context path then it is working fine. e.g.
www.google.com. Thanks,
Tushar