我有一个公开函数的WCF服务:
Public Function FeedAnimal(ByVal animal As Animal) As Animal Implements IFarm.FeedAnimal
animal.Feed()
Return animal;
End Function
然而,Animal是一个抽象类,有许多派生类型,每个类型都有自己的属性。当我在SOAPUI中使用指示Cow的属性发出请求时,我得到一个错误,我无法创建一个抽象类。如何让WCF将参数反序列化为其实际类型?让我们假设它们都可以通过不同命名的属性区分开来。
我已经尝试在任何地方添加KnownType属性,但无济于事。这样做可以让我返回派生类型,但不接受它们作为参数。
如果我要做的事情完全是疯了,请告诉我下一个最接近的事情
编辑;如果我能让它回归到这个函数的XmlSerializer,我会很满意,它曾经在以前的版本中工作
[ServiceContract(Namespace:=Constants.SERVICE_NAMESPACE)]
[ServiceKnownType(GetType(Cow))]
Public Interface IFarm
[OperationContract()]
[ServiceKnownType(GetType(Cow))]
[Validation(CheckAssertions:=False, SchemaValidation:=True)]
Function FeedAnimal(ByVal animal As Animal) _
As Animal
End Interface
和班级
[KnownType(GetType(Cow))]
Public MustInherit Class Animal
Public weight As Integer
End Class
Public Class Cow
Inherits Animal
Public mooPower As Double
End Class
请求:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:v3="mycomapnyaddresss" xmlns:foo="animalnamespace">
<soap:Header/>
<soap:Body>
<v3:FeedAnimal>
<!--Optional:-->
<v3:animal>
<!--Optional:-->
<foo:weight>100</foo:weight>
<foo:mooPower>10.0</foo:mooPower>
</v3:animal>
</v3:FeedAnimal>
答案 0 :(得分:1)
答案 1 :(得分:1)
您必须在合同中添加KnownType属性:
<DataContract(), KnownType(GetType(Cow)), KnownType(GetType(Dog))> _
Public Class Animal
...
End Class