Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class (syncdetails -> implements ichangedataretriever) both on server and client side and I need to pass a syncdetails (changedataretriever) object from server to client, this is an 'out' object.

When deserializing this object that I received from the server I get the following error:

"Error while deserializing parameter [...] " some type was not expected...and then the error says I should add this to my config. But how does my client know that the object it has received has the same type of local syncdetails class.

Greets Daan

share|improve this question
It looks like no DataContract/DataMember attributes defined... – c0d1ng Jan 24 '12 at 12:09
First the serialization at server side wouldn't work also, so I added this: [DataContract] [KnownType(typeof(SyncDetails))] [...] [DataMember].... And since then I didn't get any errors serializing the object on server side. But now the problem (as stated previously) is deserializing at client side. I already put the [DataContract] attribute in the client side syncdetails class but this didn't help... – Daan Jan 24 '12 at 12:17
1  
Maybe SyncDetails is not in the same namespace as on server side. You should share your class between client and server. – c0d1ng Jan 24 '12 at 12:32
Changed the namespace in the contract and it worked! But occasionally I get this error: "The message with Action 'schemas.xmlsoap.org/ws/2004/09/transfer/Get'; cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None)." Strange, because it works. – Daan Jan 25 '12 at 10:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.