webclient从Windows服务器返回有效字符串(2008 R2)来自工作站的空字符串(Windows 8.1)

时间:2015-12-03 23:42:55

标签: c# xml ssis webclient

当从Windows Server(2008 R2)上的SSIS(2008 R2)中的脚本组件运​​行以下代码时,将返回一个字符串。当在Windows 8.1上运行相同的代码时,它返回一个空字符串。

当我使用将URL字符串放入本地系统上的chrome时,将返回该字符串。当我把它放入IE 11时,没有返回任何内容。我有chrome作为我的默认浏览器。

string url = Dts.Variables["User::URL"].Value.ToString();

//Create a Web Client
System.Net.ServicePointManager.DefaultConnectionLimit = int.MaxValue;  
using (WebClient client = new WebClient())
{
     //Download the xml document as a string
     xmlDoc = client.DownloadString(url);
}

0 个答案:

没有答案