I have a WCF Service; this service has an operation that receives an argument of type Request
. This is only the base type, and when calling the operation we actually send a value of type Request_V1
(which inherts from Request
), that has the complete implementation of the request I want to send.
When trying to test the service using soapUI, I'm able to create the complex type of type Request_V1
(adding the proper namespace) but for some reason, the service is receiving the value as if it were of Request
type.
Reading about ServiceKnowType
, I found out here that I need to specify somehow explicitly in the client this inheritance relationship, but I haven't found any info regarding how to do it on soapUI
Has anybody experienced and solved the same issue?
Thanks