I am doing a http post from java application to a url.Everything works fine ,the problem is the URL where I am sending the post has been changed and it is redirecting it to the new url on a network level.It seems the request is going to the url but all the data I am sending in the http post seems to be lost.Without chnaging the URl in my application is there any way I can send my request to the new url successfully?
Are you able to look for the 302 error code and the Location header and resend the information to the specified URL from your code?
Archana Annamaneni
Ranch Hand
Joined: Jan 29, 2003
Posts: 147
posted
0
NoI didn't do any changes to the code , doing the redirect on a network level .Do you thinkI should read the post and and do a post to thenew url again ?