当我将基于 CSLA 的 DataPortal 放在 Azure 的云服务中时,我的 WinForms 应用程序在尝试访问我的业务对象时抛出以下异常:
System.ServiceModel.Security.SecurityNegotiationException:无法打开安全通道,因为与远程端点的安全协商失败。这可能是由于用于创建通道的 EndpointAddress 中缺少或错误指定了 EndpointIdentity。请验证 EndpointAddress 指定或暗示的 EndpointIdentity 是否正确标识了远程端点。
(以及这个内部异常) System.ServiceModel.FaultException:由于 ContractFilter,接收方无法处理带有 Action ' http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue '的消息EndpointDispatcher 不匹配。这可能是因为合约不匹配(发送方和接收方之间的操作不匹配)或发送方和接收方之间的绑定/安全不匹配。检查发送方和接收方是否具有相同的合同和相同的绑定(包括安全要求,例如消息、传输、无)。
网络配置:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="DalManagerType"
value="DataAccess.Mock.DalManager,DataAccess.Mock" />
<add key="CslaAuthentication" value="Csla" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime maxRequestLength="2147483647" targetFramework="4.5" />
<pages controlRenderingCompatibilityVersion="4.0" />
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider"
type=
"System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider,
System.Web.Extensions, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"
serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider"
type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions,
Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""
cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<services>
<service name="Csla.Server.Hosts.WcfPortal"
behaviorConfiguration="returnFaults">
<endpoint binding="wsHttpBinding"
bindingConfiguration="wsHttpBinding_IWcfPortal"
contract="Csla.Server.Hosts.IWcfPortal" />
<endpoint contract="IMetadataExchange" binding="mexHttpBinding"
address="mex" />
</service>
</services>
<bindings>
<wsHttpBinding>
<binding name="wsHttpBinding_IWcfPortal"
maxReceivedMessageSize="2147483647">
<security mode="None">
<message establishSecurityContext="false" />
<transport clientCredentialType="None" />
</security>
<readerQuotas maxBytesPerRead="2147483647"
maxArrayLength="2147483647"
maxStringContentLength="2147483647"
maxNameTableCharCount="2147483647"
maxDepth="2147483647" />
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="returnFaults">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceMetadata httpGetEnabled="true" />
<useRequestHeadersForMetadataAddress />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<directoryBrowse enabled="true" />
</system.webServer>
</configuration>
我的 WinForms 应用程序的 app.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="CslaPropertyChangedMode" value="Windows" />
<add key="CslaDataPortalProxy"
value="Csla.DataPortalClient.WcfProxy, Csla" />
<add key="CslaDataPortalUrl" value="http://127.0.0.2:81/WcfPortal.svc" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IWcfPortal"
maxReceivedMessageSize="2147483647">
<security mode="None" />
<readerQuotas
maxBytesPerRead="2147483647"
maxArrayLength="2147483647"
maxStringContentLength="2147483647"
maxNameTableCharCount="2147483647"
maxDepth="2147483647"/>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint
address="http://127.0.0.2:81/WcfPortal.svc"
binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_IWcfPortal"
contract="Csla.Server.Hosts.IWcfPortal"
name="WSHttpBinding_IWcfPortal"/>
</client>
</system.serviceModel>
</configuration>
当我浏览到本地或 Azure 中的 WcfPortal.svc 文件时,我没有收到任何错误。当我在本地或 Azure 中浏览到 WcfPortal.svc?wsdl 时,我得到了正确的 XML 响应;没有错误。
我已将整个解决方案上传到 GitHub:AzureHostTest。有两个分支:该master
分支仅包含我尝试在 Azure 中工作的项目。另一个分支traditionalWCF
包含三个额外的项目,这些项目演示了在 Azure 中工作的标准 WCF 服务;我希望使用该工作文件集作为设置 CSLA 项目的比较和指导。
我不确定我应该如何设置我的配置文件并且可以使用一些指导。