当从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);
}