I Had one custom defined type in the dll file, when i tried to send that object to the wcf service i got this error message.
Type 'Ult.DataCollection.Parameter' with data contract name 'Parameter:http://schemas.datacontract.org/2004/07/Ult.DataCollection' is not expected. Consider using a DataContractResolver or add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.
I came to know that i had to specify KnownTypeAttribute for the Parameter class, but its not defined by me and its in dll. How to resolve this? Is there any other method to resolve this?
Thanks in advance.