I have the same error, and I found a solution for my business, try it and check if it resolved yours.
In my case, unrecognized data was transmitted through WCF. It was a counter that was not registered.
For example, (C #):
enum MyEnum { A = 1, B = 2 }
And then I use a MyEnum object with a value of 3 (any that does not exist in the listing). Therefore, WCF cannot understand this value and gave me this error.
Iรบri dos Anjos
source share