请问,我有以下问题: 我正在尝试动态加载WCF RIA服务(Silverlight应用程序的DDL和DAL) 我有主要的应用程序维护授权,身份验证等。该应用程序是使用Prism库实现的 - 高度模块化,但遗憾的是由于引用了RIA服务库,因此根据客户要求切换模块是不可能的,无需重新编译整个解决方案并导致自动生成的代码出现问题。它托管在IIS(IIS Express)中 我要做的是删除主网页应用程序中对自定义模块的引用,动态加载模块并创建必要的端点。 我的第一种方法是在Web.config中定义服务:
<services>
<service name=PatientRegistry.PatientRegistryDomainService"
behaviorConfiguration="RIAServiceBehavior">
<endpoint address="" binding="wsHttpBinding"
contract="PatientRegistryDomainService" />
<endpoint address="/soap"
binding="basicHttpBinding"
contract="PatientRegistryDomainService" />
<endpoint address="/binary"
binding="customBinding"
bindingConfiguration="BinaryHttpBinding"
contract="PatientRegistryDomainService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="RIAServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<customBinding>
<binding name="BinaryHttpBinding">
<binaryMessageEncoding />
<httpTransport />
</binding>
</customBinding>
</bindings>
麻烦的是,因为它没有被引用,所以没有加载必要的程序集。
然后我尝试在代码中加载程序集,从导出类型列表中获取DomainServiceType(_types)并使用DomainServiceHost:
Type _svctype = null;
foreach (Type _T in _types)
{
if (IsSubclassOfRawGeneric(typeof(DomainService), _T))
{
_svctype = _T;
break;
}
}
DomainServiceHost host = new DomainServiceHost(_svctype /*, BaseUri*/);
host.Open();
这种方法在我之前尝试使用自托管RIA时遇到了同样的麻烦:AspNetCompatibilityModeAttribute:
此服务需要ASP.NET兼容性,并且必须在IIS中托管。在IIS中托管服务并在web.config中启用ASP.NET兼容性,或者将AspNetCompatibilityRequirementsAttribute.AspNetCompatibilityRequirementsMode属性设置为Required以外的值。
我试图通过添加
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
但它没有效果。我拼命搜索了很长时间,但没有成功。 你能否指点我如何加载未引用的RIA服务器?
P.S。我在Silverlight 5,VS2010
答案 0 :(得分:0)
您是否尝试将此包含在您的web.config中?
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>