I am trying to pass user's information from an ASP 3.0 application hosted on an IIS 5.0 server (Server 1)to a second application running on a second server (server 2) on a different domain. Cookies will not work as they will not work across domains, actually they do but very complicated. So I am passing the information in the HTTP header as follows:
Response.AddHeader "Company", Session("Company_Name")
Response.AddHeader "Email", Session("Email")
Response.AddHeader "Telephone", Session("Phone")
Is there a way to read the information by server 2?