How do I redirect a GET REST service to a POST REST service. I am using resteasy and I tried
Response.seeOther
Response.temporaryRedirect
From what I see, both these methods could make GET requests only.
Is there a way to make POST calls using the above APIs? Redirect is important to me because I want the browser to be aware of the new URL.