Hello,
We obtain relayIP by the following way.
string howtogeek = "ftrelay.messenger.yahooapis.com";
IPAddress[] addresslist = Dns.GetHostAddresses(howtogeek);
relayIP = addresslist[0].ToString();
Thanks
how can I obtain relay IP? I need to contruct url with this address "http://ftrelay.messenger.yahooapis.com/v1";?
more exactly "http://ftrelay.messenger.yahooapis.com/v1/relay and do http web request?