4 Ocak 2012 Çarşamba

"An existing connection was forcibly closed by the remote host" hatası

Selam arkadaşlar,

 

Wcf servislerini kullanırken "An existing connection was forcibly closed by the remote host" hatası geliyorsa servis katmanında ele alınmayan bir hata var demektir.

 

Gerçek hatanın sebebini görebilmek için çözüm olarak iki alternatif mevcut:

 

 

  [ServiceBehavior(

        IncludeExceptionDetailInFaults = true   

  )]

 

 

Ya da

 

 

<serviceBehaviors>

   <behavior name="EmployeeManager_Behavior">

      <serviceDebug includeExceptionDetailInFaults="true"/>

      <serviceMetadata httpGetEnabled="true" />

   </behavior>

</serviceBehaviors>

 

 

 

 

Hiç yorum yok:

Yorum Gönder