We have a shortcut service in my company which basically provides redirection of short aliases to full URLs. The server runs a simple http redirection (302) service which uses the Host request header to a do a lookup with a file system based datastore.
I have a Resful Web Applciation and all the GET requests are working ok however POST/PUT requests are not reaching to server.
Does 302 "Redirect" by default keep the original requested method or it gets overwritten with GET types?