System.ServiceModel.CommunicationException: The underlying connection was closed

后端 未结 5 2024
粉色の甜心
粉色の甜心 2020-12-31 04:14

I am retrieving data from a wcf web service and when data is more than 0.2 million records i get an exception which is as under:

System.ServiceModel.Communi         


        
相关标签:
5条回答
  • 2020-12-31 04:53

    we had a loop in our object graph that were returning. I know this probably isn't your problem but I'm adding it here in case anyone else has the same problem. We had includeExceptionDetailInFaults enabled but weren't getting the error in any client (our application or the WCF Test Client). Luckily it showed up in server logs so we were able to find it that way.

    We had Parent -> child and child -> parent for two-way navigation, we had to break that link and instead have parent -> child, and the child had an id to lookup the parent, then the error went away.

    Hope this helps someone!

    0 讨论(0)
  • 2020-12-31 04:57

    Make your client basicHttpBinding the same as your server binding. This is a verry common error to only change one binding instead of server and client binding.

    If that not works you can enable wcf tracing: wcf tracing

    That will give you more insights in what the underling problem is.

    0 讨论(0)
  • 2020-12-31 05:01

    Add following configuration to your wcf service config. And see c:\log\Traces.svclog file. My exception was throw for ;

    There was an error while trying to serialize parameter The InnerException message was 'Enum value '0' is invalid for type 'ThyCams2014.XrmBase.new_filingstatu' and cannot be serialized. Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attrienter code herebute.'. Please see InnerException for more details.

    <configuration>
       <system.diagnostics>
          <sources>
                <source name="System.ServiceModel" 
                        switchValue="Information, ActivityTracing"
                        propagateActivity="true">
                <listeners>
                   <add name="traceListener" 
                       type="System.Diagnostics.XmlWriterTraceListener" 
                       initializeData= "c:\log\Traces.svclog" />
                </listeners>
             </source>
          </sources>
       </system.diagnostics>
    </configuration>
    
    0 讨论(0)
  • 2020-12-31 05:02

    I had recently the same problem with a Wcf service within a .Net 4.0 web app. I increased the maxItemsInObjectGraph value and server didn't throw the exception anymore. The documentation here says the default maximum is Int32.MaxValue but I think it is incorrect, the maximum value is 65535.

       <serviceBehaviors>
        <behavior name="ServiceBehaviour">
          <dataContractSerializer maxItemsInObjectGraph="6553500"/>
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    

    The other thing you can do is enable tracing. This is an example of what I have in the web.config:

    <system.diagnostics>
      <sources>
        <source name="System.ServiceModel"
                switchValue="Information, ActivityTracing"
                propagateActivity="true">
          <listeners>
            <add name="traceListener"
                type="System.Diagnostics.XmlWriterTraceListener"
                initializeData= "c:\temp\log\Traces.svclog" />
          </listeners>
        </source>
      </sources>
    </system.diagnostics>
    

    If you double click on the Traces.svclog, windows should open the Microsoft Service Trace Viewer.

    If you test your service with the Microsoft WCF Test Client make sure you change the default client config to match the server settings (this includes the client endpoint behavior) to make sure the client can receive the response from the server.

    I hope this helps.

    0 讨论(0)
  • 2020-12-31 05:07

    This statement solved my problem:

    db.ContextConfiguration.ProxyCreationEnabled = false;
    
    0 讨论(0)
提交回复
热议问题