1

我正在使用 JsonServiceClient 客户端与外部供应商托管在 IIS 7 上的 RESTful 服务进行通信。

这是我用来调用他们的 Get 方法的一些示例代码。

ServiceStack.ServiceClient.Web.JsonServiceClient client = new ServiceStack.ServiceClient.Web.JsonServiceClient("UrlToVendor"));

client.SetCredentials("userName", "password");

client.AlwaysSendBasicAuthHeader = true; 
DTOReturn result = client.Get<DTOReturn>(string.Empty);

我总是遇到授权失败。我们放置了一个嗅探器,并且 Authorization 标头被发送为:

基本用户名:密码

代替

基本用户名:密码

我们能够使用标准的 .Net 调用来让它工作

System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(
                "UrlToVendor");

string authInfo = "userName:password";
authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));

req.Accept = "application/json"; //text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
req.PreAuthenticate = true;
req.Method = "GET";
req.Headers["Authorization"] = string.Format("Basic {0}", authInfo);

System.Net.HttpWebResponse res = (System.Net.HttpWebResponse)req.GetResponse();

如果我们将“Basic”更改为“basic”,这些标准调用与 JasonServiceClient 相同。有什么建议么?

4

1 回答 1

2

看起来有人遇到了同样的问题。最近的提交将身份验证方案从“基本”更改为“基本”。https://github.com/ServiceStack/ServiceStack/commit/d4f21c5355ab87d7315e142372eef9a40e096b5f 您应该能够只更新您的 dll。

根据 RFC 2617 sec 1.2,auth-scheme 是不区分大小写的。见https://www.rfc-editor.org/rfc/rfc1945#page-47。我很好奇为什么供应商服务不接受它。

于 2013-02-28T14:52:14.913 回答