I have a serializable POCO called DataUnification.ClientData.ClientInfo in a .NET.NET A library project.
It is used in the parameter for the web service defined in project B :
public XmlDocument CreateNewClient(ClientInfo ci, string system)
Now I want to call this web method from project C and use the original type DataUnification.ClientData.ClientInfo in the parameter. However, due to the generated proxy class, it has now become a different type: WebServices.ClientDataUnification.DataUnificationWebService.ClientInfo .
As for .NET, these are not the same types.
How can I get around this?
source share