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?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Since you have objects referencing other objects in a possible circular manner, you're basically attempting to send an object graph rather than an object tree. WCF only added support for sending object graphs in .NET 3.5 SP1, so if your server has .NET 3.5 without SP1 or lower, it will fail when attempting to send an object graph.

To figure out exactly why your service isn't responding, you may want to enable WCF tracing which produces a very detailed log of what's going on inside your service.

link|improve this answer
Both server and dev machine are ASP.NET 4.0 with WCF properly installed and working. I forgot to mention that. Also, I've tried the tracing, that's where I found out all incoming service requests have a "ServiceLevelSendReply" except for the one having the problem. No other Information about that particular request is visible. I'm going to see if I can enable deeper tracing, not sure on all the options available. – DNeoMatrix Jan 18 '11 at 21:16
@DNeoMatrix: The highest level of tracing is switchValue="All". – Allon Guralnek Jan 18 '11 at 21:22
Giving you credit even though it wasn't the direct cause of my finding the solution. Apparantly System.ServiceModel.DomainServices.Server doesn't exist on asp.net servers by default, but it's referenced in my data-type library, and needs to be copied to the server during publishing. – DNeoMatrix Jan 18 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.