lunedì 12 marzo 2018

WCF The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing

Nel caso che stiamo utilizzando un servizio web di tipo WCF che viene richiamato da una pagina web, e questa genera il messaggio di errore "The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing..........  " vuol dire che nel file di configurazione va impostato il debug a true in modo che visualizza l'errore.

Qui di seguito l'impostazione da impostare nel web.config del servizio WCF.

 <behavior>
    
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>

Nessun commento: