How to send a 303 redirect
Hi,
What I understood about http 303 status is that we have to give an alternate url to the client.
So what I did is :
response.setStatus(response.SC_SEE_OTHER);
response.setHeader("Location", newUrl);
Is this the correct way to send a 303 redirect ?
Thanks,
Anoop