我一直在关注的Mozilla文章就如何建立自己的网站,允许跨站点脚本的请求 。 使用IIS管理器中我已经加入了以下HTTP响应头
Access-Control-Allow-Origin : *
Access-Control-Allow-Headers : Origin, SecurityPrivateKeyID
Access-Control-Allow-Methods : GET, POST, PUT, DELETE, OPTIONS
尽管我不断收到一个405 Method Not Allowed
时,我的浏览器(Firefox和Chrome)发送一个定制的飞行前的请求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 methos]
我的IIS 8实例是全新安装,看来我需要做一些修改Handler Mappings
备份IIS配置
在任何的sugggested变化打破现有的网站时,最好使ApplicationHost.config文件的备份
- 导航到
C:\Windows\System32\inetsrv\config
- 制作副本
applicationhost.config
删除未使用的处理程序
作为一个起点,我删除了所有未使用的处理程序映射,以减少问题的空间。 您可以通过修改做到这一点applicationhost.config
直接或通过使用IIS管理器
- 打开IIS管理器
- 无论是服务器节点或个别网站节点上选择处理程序映射功能
- 手动删除你不需要的所有映射。
我的网站是基于大量的服务,仅仅依靠静态文件和文件中.aspx
和.svc
文件扩展名。 我也手动删除所有引用.NET 2.0
在整个配置文件。
添加选项处理程序
这似乎是修复。
- 打开IIS管理器
- 无论是服务器节点或个别网站节点上选择处理程序映射功能
- 在左手列中选择
Add Module Mapping
- 在
Add Module Mapping
对话框中使用下列值。 -
Request path
- *
-
Module
- ProtocolSupportModule
-
Executable
- [留空] -
Name
- [您想要的任何]
- 点击
Request Restrictions
- 在
Mapping
选项卡,unckeck Invoke handler only if request is mapped to
- 在
Verbs
标签确保OPTIONS
选择 - 在
Access
选项卡中选择Script
我得到的处理程序配置看起来是这样的
<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>
在我来说,我不得不去Handler Mappings
,切换到Ordered View
,然后将OPTIONSVerbHandler
一路到列表的顶部。