2

我正在构建一个项目并希望实施 CORS。它安装在共享 IIS 服务器(共享主机)上。

在我的 apphost.cs 中,我根据我在网上找到的几篇文章启用和配置 CORS。

Plugins.Add(new CorsFeature(
     allowedMethods: "GET, POST, PUT, DELETE, OPTIONS", 
     allowedOrigins: "*", 
     allowCredentials: true, 
     allowedHeaders: "content-type, Authorization, Accept"));

我还读到,在实现较新的 SS API (IService) 时,我必须为“选项”调用提供一个挂钩,所以我添加了......

this.RequestFilters.Add((httpReq, httpRes, requestDto) =>
{
     //Handles Request and closes Responses after emitting global HTTP Headers
     if (httpReq.HttpMethod == "OPTIONS")
         httpRes.EndRequest();  //add a 'using ServiceStack;'
     });

我可以通过 REST 控制台(chrome 插件)调用我的 api,但是当我使用 ajax 请求调用时,我收到 405 错误。

Request URL:http://empire.thecodingpit.com/api/engine
Request Method:OPTIONS
Status Code:200 OK

Request Headers view source
Accept:*/*
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Access-Control-Request-Headers:accept, origin, content-type
Access-Control-Request-Method:POST
Connection:keep-alive
Host:empire.thecodingpit.com
Origin:http://json.commublogs.com
Referer:http://json.commublogs.com/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko)                  Chrome/29.0.1547.66 Safari/537.36
Response Headers view source
Cache-Control:private
Content-Length:0
Date:Thu, 26 Sep 2013 17:00:59 GMT
Server:Microsoft-IIS/8.0
X-AspNet-Version:4.0.30319
X-MiniProfiler-Ids:  ["f8c3ddb8434149feb689dd44d93bf862","6d0e7e0f8ac1456d98872a82af4d6602","67bdf08a19c641a7b26db0b43fd10888","1819b1ce3e314c0594ef9ecb1ac68fcf","7af8595373e345f3a9f8ade60c8a7817"]
X-Powered-By:ASP.NET

我的方法还没有任何 [Authentication]。

我已经查看了这个问题并如上所示实现了它。这个相关问题不是重复的。servicestack REST API 和 CORS

我正在进行的服务调用(POST)是......

public object Post(SelectedTroops request)
{
     return new SelectedTroopsResponse { ArrayOfSelectedTroops = request.ArrayOfSelectedTroops };

}

如果我遗漏了任何可能有用的信息,请告诉我。我想一个旁注问题可能是 - 你如何有效地跟踪和调试这样的东西?任何有用的提示将不胜感激。

4

1 回答 1

4

你必须使用:

httpRes.EndRequest();

重要的是,它是命名空间中的扩展方法ServiceStack。我建议使用像 ReSharper 这样的工具,它可以让自动查找和引用扩展方法变得微不足道。

于 2013-09-26T17:28:12.947 回答