- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我收到这个错误,但真的不知道如何解决:
The element 'system.serviceModel' has invalid child element 'domainServices'. List of possible elements expected: 'behaviors, bindings, client, comContracts, commonBehaviors, diagnostics, serviceHostingEnvironment, extensions, protocolMapping, services, standardEndpoints, tracking, routing
配置:
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.serviceModel">
<section name="domainServices" type="System.ServiceModel.DomainServices.Hosting.DomainServicesSection, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" allowDefinition="MachineToApplication" requirePermission="false" />
</sectionGroup>
</configSections>
<system.serviceModel>
<domainServices>
<endpoints>
<!-- <add name="OData" type="System.ServiceModel.DomainServices.Hosting.ODataEndpointFactory, System.ServiceModel.DomainServices.Hosting.OData, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> -->
<add name="soap" type="Microsoft.ServiceModel.DomainServices.Hosting.SoapXmlEndpointFactory, Microsoft.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<!-- <add name="JSON" type="Microsoft.ServiceModel.DomainServices.Hosting.JsonEndpointFactory, Microsoft.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> -->
</endpoints>
</domainServices>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceThrottling maxConcurrentCalls="100" maxConcurrentSessions="100" maxConcurrentInstances="10" />
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
最佳答案
有时,如果我们针对比预期版本更旧的 .Net Framework 版本,就会出现这种错误(“system.ServiceModel 具有无效的子元素 XXXX”)。这可以通过打开项目属性然后从应用程序选项卡修改目标框架来解决。希望这对外面的人有用。
关于c# - system.serviceModel 具有无效的子元素 domainServices,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10254839/
我不能完全理解在什么情况下我会使用 DomainService 和在这种情况下你的文件不详细在这个问题上足够了。你能给出更详细的解释吗举个例子? 如果我只使用 ApplicationService 而
我正在使用域服务从 Silverlight 客户端的数据库中获取数据。 在 DomainService1.cs 中,我添加了以下内容: [EnableClientAccess()] public cl
我想要在我的域服务中使用类似于以下的方法: public SystemState GetSystemStatus() { return new SystemStatus {
我的 Silverlight 应用程序使用 RIA Web 服务与使用 Entity Framework 模型的 DomainService 进行交互。 在服务中我有一些简单的东西,比如: Publi
假设您创建了一个 RIA DomainService 并在其中包含一个 Person(如下所示)实体,您可以访问该对象上的聚合实体吗? 例如,如果我有这样的实体(请记住,这是一种天真的表示,它们是通过
我收到这个错误,但真的不知道如何解决: The element 'system.serviceModel' has invalid child element 'domainServices'. Li
我正在开发 Silverlight 4.0 应用程序并使用 RIA 服务。我在服务器端创建了一个类,其中应用了 DataContract 和 DataMember 属性。 DomainService
我在本地环境中加载了一个应用程序。这是我继承的代码库,根本没有让它工作。此时,当我在浏览器中导航到“http://test.myapp.com:75/”时,收到以下错误: 描述:处理此请求所需的配置文
谁能给我指出一个示例或简要描述如何使用 Linq to SQL 作为数据访问层但创建 WCF RIA Services DomainService 的自定义实现使用 .dbml 文件(这是因为 Lin
我正在尝试使用 RIA 服务,我安装了 Silverlight 4 和 Silverlight 4 Tools/SDK,但我无法设置 LINQToEntitiesDomainService,因为我找不
在 RIA 域服务中,我添加了一些实用功能。比如我们有... public virtual CmsDealer GetCmsDealerById(string id) { return thi
我使用 Invoke 属性从我的 SL ViewModel 调用了这个 DomainService 方法: [Invoke] public ServiceModel.Recipy GetRecipyB
我在带有一些 Silverlight 组件的 ASP.Net 应用程序中使用 .Net RIA 服务的七月 CTP。我正在从 Silverlight 调用 RIA 服务。 当我尝试在我的领域服务(一个
我有一个带有多个对象和 RestfulServices 的 apache ISIS 网络应用程序。出于记录目的,我需要请求本身的一些信息,而不仅仅是应该发送的参数。我如何访问这些请求 header 信
这是一个有趣的问题,我希望有人能帮忙解决。 我有一个包含以下查询的 DomainService 类: [Query] public IEnumerable GetBatchResult
我是一名优秀的程序员,十分优秀!