views:

37

answers:

1

I have a problem with WCF deserialization where the client hangs on the response for more than a minute.

I'd like to try to swap different deserializers and see if it affects the behavior.

Can I swap in/out different serializers (are there any others?) from configuration, and if so can I do that with any binding, or is that out of control once the service reference is imported?

Any help appreciated!

A: 

Can I swap in/out different serializers (are there any others?) from configuration

This describes how to use the XmlSerializer and DataContractSerializer on two different endpoints for the same service. Its not exactly swapping them in and out but it might suffice for your testing.

barry
thx but your link seems to be showing how to expose the same service through different endpoints in a hosting scenario - my question is more about a WCF client consuming a given service and using different kinds of deserialization
JohnIdol
yeah, not going to help you out. good luck.
barry