I have a scenario here whereby, on ASP.NET server side (domain A), some data (string data) needs to be pass over to PHP server side (domain B), and then the user will be redirected from Domain A to Domain B.
Can this be done over http? Or should it be on https? Should the data be encrypted if on https?
I've read on this post
that it can be done using httpwebrequest.
should the data be pass via httpwebrequest then only response.redirect from .net to php ? Or can the httpwebrequest do the redirection?