我有一个WCF服务,并且我在web.config中使用wsHttpBinding。
我还从IIS7创建了一个测试证书,并将其用于网站的https绑定
服务的Web配置如下
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="WsBehaviour">
<serviceMetadata httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsHttpBinding>
<binding name="WsBinding">
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
<message clientCredentialType="None" algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service name="WsService.Service1" behaviorConfiguration ="WsBehaviour">
<endpoint address="https://MachineName.DomainName:8087/WsService/Service1.svc"
binding="wsHttpBinding" bindingConfiguration="WsBinding" contract="WsService.IService1" >
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</service>
</services>
</system.serviceModel>当我在浏览器中打开URL时,它工作得很好,当我向silverlight项目添加服务引用时,它也工作得很好。
但是,当我从应用程序调用服务时,它会给出一个跨域错误。
我还在项目中包含了clientaccesspolicy.xml和crossDomain.xml,但仍然面临一个问题
An error occurred while trying to make a request to URI
'https://MachineName.DomainName:8087/WsService/Service1.svc'. This
could be due to attempting to access a service in a cross-domain way
without a proper cross-domain policy in place, or a policy that is
unsuitable for SOAP services. You may need to contact the owner of the
service to publish a cross-domain policy file and to ensure it allows
SOAP-related HTTP headers to be sent. This error may also be caused by
using internal types in the web service proxy without using the
InternalsVisibleToAttribute attribute. Please see the inner exception
for more details.

发布于 2013-12-14 22:26:11
clientaccesspolicy.xml需要位于web服务器的根目录中,而不是您的项目中。
http://msdn.microsoft.com/en-us/library/cc197955(v=vs.95).aspx
3.将crossdomain.xml文件保存到托管服务的域的根目录。例如,如果服务托管在http://fabrikam.com中,则文件必须位于http://fabrikam.com/crossdomain.xml
发布于 2017-02-20 18:20:37
您需要在您托管在IIS上的clientaccesspolicy.xml服务的根文件夹中添加crossDomain.xml和WCF。
https://stackoverflow.com/questions/20580014
复制相似问题