我需要调用3个WCF服务,如下所示
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var resultJson1 = client.UploadString("http://localhost:45868/Product/GetAvailableProductsByContact",
jsonser1);
var resultJson2= client.UploadString("http://localhost:45868/Product/GetMemberProductsByContact",
jsonser2);
var resultJson3= client.UploadString("http://localhost:45868/Product/GetCoachProductsByContact",
jsonser3);
这需要花费大量时间才能获得结果并在页面上显示。任何人都可以帮助我如何并行执行它们吗?
答案 0 :(得分:5)
您可以使用task parallelism library:
Task<string>[] taskArray = new Task<string>[]
{
Task.Factory.StartNew(() => {
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var json = client.UploadString("http://localhost:45868/Product/GetAvailableProductsByContact",
jsonser1);
return json;
}),
Task.Factory.StartNew(() => {
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var json = client.UploadString("http://localhost:45868/Product/GetMemberProductsByContact",
jsonser2);
return json;
}),
Task.Factory.StartNew(() => {
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var json = client.UploadString("http://localhost:45868/Product/GetCoachProductsByContact",
jsonser3);
return json;
}),
};
// the request for .Result is blocking and waits until each task
// is completed before continuing; however, they should also all
// run in parallel instead of sequentially.
var resultJson1 = taskArray[0].Result;
var resultJson2 = taskArray[1].Result;
var resultJson3 = taskArray[2].Result;
或者,由于您的请求非常相似,只有url和upload字符串不同,您可以使用LINQ AsParallel
数组处理:
var requests = new [] {
new { Url = "http://localhost:45868/Product/GetAvailableProductsByContact", Input = jsonser1 },
new { Url = "http://localhost:45868/Product/GetMemberProductsByContact", Input = jsonser2 },
new { Url = "http://localhost:45868/Product/GetCoachProductsByContact", Input = jsonser3 },
};
var result = requests.AsParallel().Select(req => {
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
var json = client.UploadString(req.Url, req.Input);
return json;
}).ToArray();
// when above code has finished running, all tasks are completed
var resultJson1 = result[0];
var resultJson2 = result[1];
var resultJson3 = result[2];
答案 1 :(得分:1)
您可以使用begin/end pattern:
此示例显示如何在parallell中调用两个ws。您可以将想法扩展到N个服务。
答案 2 :(得分:0)
尝试创建执行每个来电(MSDN)
的Task
您可以尝试执行以下操作
首先为每次通话创建Task<String>
var client = new WebClient();
client.Headers[HttpRequestHeader.ContentType] = "application/json";
Task<String> task1 = Task.Factory.StartNew(() => {
client.UploadString("http://localhost:45868/Product/GetAvailableProductsByContact",
jsonser1);
});
冲洗并重复其他2
之后,您可以通过调用Task<String>
,task1.Value
和task2.Value
来加入执行3 task3.Value
,这将返回String