通信异常是由于我的客户端访问策略文件未被访问而发生的



我有一个在控制台应用程序中承载的 WCF 服务。
这是 app.config 文件:

<?xml version="1.0"?>
<configuration>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
    <behaviors>
      <serviceBehaviors>
        <behavior name="CAVES.Framework.Network.IntegrationSuite.IntegrationServices.IntegrationServiceBehavior">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="CrossDomainServiceBehavior">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <services>
      <service behaviorConfiguration="CAVES.Framework.Network.IntegrationSuite.IntegrationServices.IntegrationServiceBehavior"
        name="CAVES.Framework.Network.IntegrationSuite.IntegrationServices.IntegrationService">
        <endpoint address="" binding="basicHttpBinding" contract="CAVES.Framework.Network.IntegrationSuite.IntegrationServices.Interfaces.IIntegrationService">
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8731/IntegrationService" />
          </baseAddresses>
        </host>
      </service>
      <service name="CAVES.Framework.Network.IntegrationSuite.IntegrationServices.CrossDomainService">
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost" />
          </baseAddresses>
        </host>
        <endpoint address="" binding="webHttpBinding" contract=
"CAVES.Framework.Network.IntegrationSuite.IntegrationServices.Interfaces.ICrossDomainService" behaviorConfiguration="CrossDomainServiceBehavior"/>
      </service>
    </services>
  </system.serviceModel>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>
</configuration>

当我使用套接字访问它时,客户端访问策略被正确获取,但是当我尝试调用集成服务的方法时,它给了我以下异常:

尝试制作时出错 对 URI 的请求 "http://localhost:8731/IntegrationService"。 这可能是由于试图 以跨域方式访问服务 没有适当的跨域策略 已到位,或策略 不适合 SOAP 服务。你可以 需要联系所有者 用于发布跨域的服务 策略文件并确保它允许 要发送的与 SOAP 相关的 HTTP 标头。 此错误也可能由使用 Web 服务中的内部类型 不使用代理 InternalsVisibleToAttribute 属性。 请参阅内部异常 更多细节。

内部异常:
{System.Security.SecurityException ---> System.Security.SecurityException: 安全错误。 在 System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.Browser.BrowserHttpWebRequest.<>c_DisplayClass5.b_4(Object 发送状态)在 System.Net.Browser.AsyncHelper.<>c_DisplayClass4.b_1(Object sendState) --- End of inner 异常堆栈跟踪---位于 System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state) at System.Net.Browser.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult 结果)}

我的客户端访问策略文件看起来不错,它应该可以工作,但我不确定为什么它不能。

<?xml version="1.0" encoding ="utf-8"?>
<access-policy>
  <cross-domain-access>
    <policy>
      <allow-from>
        <domain uri="*" />
      </allow-from>
      <grant-to>
        <socket-resource port="4502-4534" protocol="tcp" />
      </grant-to>
    </policy>
    <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>

当我使用套接字访问它时, 提取客户端访问策略 正确,但是当我尝试调用 集成服务它的方法 给我以下例外

您的跨域策略文件仅允许从端口 4502 到 4534 的套接字连接,但您的应用程序正在尝试访问端口 8731。除非应用程序是在浏览器外安装的(具有提升的权限),否则 Silverlight 只能访问此端口范围,因此 8731 将不起作用。

现在,您的服务正在使用 BasicHttpBinding,所以我假设您正在使用 HTTP。在这种情况下,策略文件必须与服务位于同一域中,并且必须位于域根目录(在您的情况下为 http://localhost:8731/clientaccesspolicy.xml)。http://blogs.msdn.com/b/carlosfigueira/archive/2008/03/07/enabling-cross-domain-calls-for-silverlight-apps-on-self-hosted-web-services.aspx 上的博客文章提供了有关如何为自承载服务启用 SL 的跨域调用的详细信息。

相关内容

  • 没有找到相关文章

最新更新