I am seeing a problem where I send large messages over wcf net.msmq using protobuf-net and get the following error:
The formatter threw an exception while trying to deserialize the message: Error in deserializing body of request message for operation 'DeliverData'. End element 'proto' from namespace 'http://mynamespace' expected
If message size is under 16k, it works
If I remove protobuf-net, it works
If I switch to basichttp, it works
But if message size is over 16k, using protobuf-net, over net.msmq, I get the error. I have set maxBufferPoolSize and maxReceivedMessageSize sufficiently large, it does not help.
Has anyone else seen this? Has anyone else used protobuf-net + net.msmq for large messages and gotten it to work?