O nome remoto não pôde ser resolvido - webclient

Estou enfrentando esse erro:

The remote name could not be resolved: 'russgates85-001-site1.smarterasp.net'

Quando eu pedir conteúdo html para ler usando o web client, isso me dá erro. Abaixo está o meu código.

string strHTML = string.Empty;
WebClient myClient = new WebClient();
UTF8Encoding utf8 = new UTF8Encoding();
byte[] requestHTML;
string pdfFileName = "outputpdf_" + DateTime.Now.Ticks + ".pdf";
string webUrl = Request.Url.Scheme + "://" + Request.Url.Host + (Request.Url.Port != 80 ? ":" + Request.Url.Port : "");

requestHTML = myClient.DownloadData("http://russgates85-001-site1.smarterasp.net/adminsec/images/printinvoice.aspx?iid=2");

// OR

requestHTML = myClient.DownloadData(webUrl + "?iid=3");

Quando coloco a mesma URL no meu código / ambiente local, ela funciona bem.

questionAnswers(3)

yourAnswerToTheQuestion