带有BaseAddress的HttpClient

时间:2013-12-16 10:54:23

标签: c# .net wcf dotnet-httpclient webhttpbinding

使用webHttpBindingHttpClient属性调用BaseAddress WCF终结点时遇到问题。

HttpClient的

我创建了一个HttpClient实例,将BaseAddress属性指定为本地主机端点。

enter image description here

GetAsync Call

然后我调用GetAsync方法传递额外的Uri信息。

HttpResponseMessage response = await client.GetAsync(string.Format("/Layouts/{0}", machineInformation.LocalMachineName()));

enter image description here

服务端点

[OperationContract]
[WebGet(UriTemplate = "/Layouts/{machineAssetName}", ResponseFormat = WebMessageFormat.Json)]
List<LayoutsDto> GetLayouts(string machineAssetName);

问题

我遇到的问题是,BaseAddress的/AndonService.svc部分被截断,因此结果调用转到https://localhost:44302/Layouts/1100-00277而不是https://localhost:44302/AndonService.svc/Layouts/1100-00277导致404 Not Found。

是否有理由在GetAsync调用中截断BaseAddress?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:44)

BaseAddress中,只需添加最终斜杠:https://localhost:44302/AndonService.svc/。如果不这样做,路径的最后部分将被丢弃,因为它不被视为“目录”。

此示例代码说明了不同之处:

// No final slash
var baseUri = new Uri("https://localhost:44302/AndonService.svc");
var uri = new Uri(baseUri, "Layouts/1100-00277");
Console.WriteLine(uri);
// Prints "https://localhost:44302/Layouts/1100-00277"


// With final slash
var baseUri = new Uri("https://localhost:44302/AndonService.svc/");
var uri = new Uri(baseUri, "Layouts/1100-00277");
Console.WriteLine(uri);
// Prints "https://localhost:44302/AndonService.svc/Layouts/1100-00277"