我有一个很奇怪的情况。
我有一个很简单的包裹:
""https://i.sstatic.net/xnf41.jpg" alt="此处输入图像描述"/ >
- Task "get list" retrieves a data table from an assembly with one column and a list of URL to be ran into a object variable.
- The "foreach" loop loops through the object variable and loads the URL into a url string variable
The "run", calls the url with this code (its 2005 so Im stuck with VB):
Dim myURI As New Uri("http://" + Dts.Variables("URL").Value.ToString()) Dim myWebClient As New System.Net.WebClient myWebClient.OpenReadAsync(myURI)
正在调用的 URL 是内部的, 只是读取参数, 并进行一系列操作, 这需要一些时间, 这就是为什么我使用了“ OpenReadAsync ”
我的问题是:如果我有4个 URL 运行, 软件包只运行其中2个 。 环形 lops 4 次, 脚本被调用4次( 我可以看到如果我调试它), 线 < code> myWebClient. OpenReadAsync( MyURI) 被执行4次, 4个不同的值, 但只有2个调用到 URL 。
如果我再次运行软件包, 其它两个 URL 现在被调用, 这证明 URL 没有任何问题, 如果我在浏览器上人工调用 4 个 URL (比如在 4 个标签上), 它们都会产生预期结果, 从而证明 URL 的代码没有问题 。
于是我带着VB代码离开了,这是我第一次使用 uri 和 WebClient, 所以我想知道我是否做错了什么。我还试图在通话之间加一个5秒的睡眠,但是没有运气。
Any help would be appreciated. Thanks