我在解决方案中创建了WCF服务库项目,并对此有服务引用。我使用了类库中的服务,因此除了类库之外,我还有WPF应用程序项目中的引用。直接设置服务-仅更改其以获取异步服务功能。
一切工作正常-直到我想更新我的服务引用。它失败了,所以我最终回滚并重试,但是即使那样也失败了!因此-更新服务引用失败,而无需对其进行任何更改。为什么?!
我得到的错误是这个:
Custom tool error: Failed to generate code for the service reference
'MyServiceReference'. Please check other error and warning messages for details.
该警告提供了更多信息:
Custom tool warning: Cannot import wsdl:portType
Detail: An exception was thrown while running a WSDL import extension:
System.ServiceModel.Description.DataContractSerializerMessageContractImporter
Error: List of referenced types contains more than one type with data contract name 'Patient' in
namespace 'http://schemas.datacontract.org/2004/07/MyApp.Model'. Need to exclude all but one of the
following types. Only matching types can be valid references:
"MyApp.Dashboard.MyServiceReference.Patient, Medski.Dashboard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" (matching)
"MyApp.Model.Patient, MyApp.Model, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" (matching)
XPath to Error Source: //wsdl:definitions[@targetNamespace='http://tempuri.org/']/wsdl:portType[@name='ISomeService']
也有两个类似的警告:
Custom tool warning: Cannot import wsdl:binding
Detail: There was an error importing a wsdl:portType that the wsdl:binding is dependent on.
XPath to wsdl:portType: //wsdl:definitions[@targetNamespace='http://tempuri.org/']/wsdl:portType[@name='ISomeService']
XPath to Error Source: //wsdl:definitions[@targetNamespace='http://tempuri.org/']/wsdl:binding[@name='WSHttpBinding_ISomeService']
和相同的:
Custom tool warning: Cannot import wsdl:port ..
我发现这一切令人困惑。.除了通过服务参考获得的那类外,我在客户端仪表板上没有耐心的类。那是什么意思呢?为什么突然显示出来?记住:我什至没有改变任何东西!
现在,在这里找到了解决方案,但是没有解释这意味着什么。所以; 在服务的“配置服务引用”中,取消选中“在引用的程序集中重用类型”复选框。现在重建,一切正常,没有问题。但是我真正改变了什么?这会对我的应用程序产生影响吗?而且什么时候应该取消选中呢?我确实想重复使用已设置DataContract的类型,但仅此而已。如果未选中此选项,我仍然可以访问那些人吗?