关于如何设置我的网站以允许跨站点脚本请求,我一直关注Mozilla article。使用IIS管理器我添加了以下HTTP响应标头
Access-Control-Allow-Origin : *
Access-Control-Allow-Headers : Origin, SecurityPrivateKeyID
Access-Control-Allow-Methods : GET, POST, PUT, DELETE, OPTIONS
尽管如此,当我的浏览器(Firefox和Chrome)使用自定义405 Method Not Allowed
标头发送转机前请求时,我仍然会收到SecurityPrivateKeyID
。
请求
OPTIONS /Service/Json/User.svc/ HTTP/1.1
Host: serviceprovider.com
User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Origin: http://client.com
Access-Control-Request-Method: GET
Access-Control-Request-Headers: securityprivatekeyid
Connection: keep-alive
响应
HTTP/1.1 405 Method Not Allowed
Allow: GET
Content-Length: 1565
Content-Type: text/html; charset=UTF-8
Server: Microsoft-IIS/8.0
access-control-allow-origin: *
Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS
Access-Control-Allow-Headers: Origin, SecurityPrivateKeyID
Date: Sat, 23 Mar 2013 08:35:03 GMT
直接在http://serviceprovider.com/Service/Json/User.svc/
访问时,该服务正常。
关于我做错的任何想法?
[注意我已将主机文件更改为指向我的机器上的client.com和serviceprovider.com]
[使用JSONP的解决方案不会这样做,因为我的网络服务必须能够使用POST,PUT和DELETE方法]
答案 0 :(得分:21)
我的IIS 8实例是全新安装,似乎我需要对Handler Mappings
进行一些修改
如果任何建议的更改破坏了您现有的网站,最好备份applicationhost.config文件
C:\Windows\System32\inetsrv\config
applicationhost.config
作为起点,我删除了所有未使用的Handler Mappings以减少问题空间。您可以通过直接修改applicationhost.config
或使用IIS管理器
我的网站基于服务,只依赖于具有.aspx
和.svc
文件扩展名的静态文件和文件。我还手动删除了整个配置文件中对.NET 2.0
的所有引用。
这似乎是解决方法。
Add Module Mapping
Add Module Mapping
对话框中,使用以下值。
Request path
- *
Module
- ProtocolSupportModule
Executable
- [留空] Name
- [无论你想要什么] Request Restrictions
Mapping
标签中,取消确认Invoke handler only if request is mapped to
Verbs
标签中,确保选中OPTIONS
Access
标签中选择Script
我生成的Handlers配置如下所示
<handlers accessPolicy="Read, Script">
<add name="OPTIONS" path="*" verb="OPTIONS" modules="ProtocolSupportModule" resourceType="Unspecified" />
<add name="svc-Integrated-4.0" path="*.svc" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
<add name="SecurityCertificate" path="*.cer" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%windir%\system32\inetsrv\asp.dll" resourceType="File" />
<add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
<add name="PageHandlerFactory-Integrated-4.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
<add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" responseBufferLimit="0" />
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" />
</handlers>
答案 1 :(得分:1)
对于我的实例:
确保请求中的“Access-Control-Allow-Headers”和“Access-Control-Allow-Methods”小于或等于响应中的值。(不要使用“*”)
在Web.config
<remove name="OPTIONSVerbHandler" />
醇>
答案 2 :(得分:0)
在我的情况下,我必须去Handler Mappings
,切换到Ordered View
,然后将OPTIONSVerbHandler
一直移到列表顶部。