Silverlight调用WCF服务遇到SecurityError
错误信息开头是这样的"An error occurred while trying to make a request to URI 'http://localhost:8005/Service1.svc'. This could be due to a cross domain configuration error. Please see the inner exception for more details."这时,应该检查一下WCF服务的根目录下是否有clientaccesspolicy.xml, crossdomain.xml两个文件,如果没有,则需要添加。
如果项目类型是WCF Service Application
也就是说,当启动服务项目时,会启动ASP.NET Web Development Server的那种项目。那直接在项目根目录添加这两个文件即可。这样的项目最后在IIS中运行,由于上述两个文件必须直接在http://domainname/下,也就是说,这个项目最后必须单独作为一个网站跑在一个域名下,而不能作为虚拟目录跑在其他网站下级。或者,把这两个文件添加到要运行的根网站目录下也是可以的。详细信息,可以参考这篇文章。
文件内容:
clientaccesspolicy.xml
<?xml version="1.0" encoding="utf-8"?> <access-policy> <cross-domain-access> <policy> <allow-from http-request-headers="*"> <domain uri="*"/> </allow-from> <grant-to> <resource path="/" include-subpaths="true"/> </grant-to> </policy> </cross-domain-access> </access-policy>
crossdomain.xml
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"> <cross-domain-policy> <allow-http-request-headers-from domain="*" headers="*"/> </cross-domain-policy>
如果服务是Self Hosted Service
即是说,服务最后不是由IIS运行,而是使用桌面应用程序或者Windows Service通过ServiceHost类来运行的。这样的话,就稍微麻烦一些。服务必须有一个service使用basicHttpBinding跑在某个根地址下,并且提供上面两个文件的内容。具体方法,可以参考这篇文章。如果启动时遇到WCF Error: HTTP could not register URL http://+:xxxx/... Your process does not have access rights to this namespace,可以参考我这篇文章的解决办法。
posted on 2009-12-17 01:49 Gildor Wang 阅读(427) 评论(0) 编辑 收藏 举报