I want to pass data from WebApplication 1 to WebApplication 2.
WebApplication 1 contains data which I get and want to show that on webapplication 2.
My scenario is that I'm tracking visitors from my WebApplication 1 and showing their information on WebApplication 2.
Can anyone tell me the logic of my web service. What I have so far is:
[WebMethod]
public string VisitorInfo()
{
Values v = new Values();
return v.SendValue();
}