I have found this question: Complex data types in WCF? which has a very similiar problem, except it's based on enumvalue problems. My problem is a little more complex. I have a service with methods that function perfectly fine, except for one. The one method (operationcontract) call that fails is for a method returning a complex object. This object has a property with the [Include] and [Association] fields, which in turn has its own [Include] and [Association] fields (these are actually recursive, pointing to each other, buildiing a potentially infinite list.
The biggest problem is that in my development environment Win 7 x64, vs2010, iis, it functions as expected, but in my production environment Server 2008 R2, it breaks, giving me the "An error occurred while receiving the HTTP response to" error.
I have checked the Service Trace Viewer on the message log, but all that is apparant is that there is no response being sent at all for that particular request. All other requests get a "ServiceLevelSendReply" Record, whereas this particular method does not.
Any Ideas?