WCF 예외 정보: 내부 오류로 인해 서버에서 요청을 처리할 수 없습니다.
이것은 사실 우리가 오류 알림을 차단한 것이다. 우리는 아래 프로필 시스템을 보자.ServiceModel 노드
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- , false -->
<serviceMetadata httpGetEnabled="true"/>
<!-- , true。 false -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https"/>
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
프로필에서<span style="font-family: Arial, Helvetica, sans-serif;"> <!-- , true。 false --></span>
여기에는 고장 이상 상세한 정보를 어떻게 수신하는지 명확하게 지적되어 있다.하면, 만약, 만약...
<serviceDebug includeExceptionDetailInFaults="true"/>
false로 설정하면 그 추상적이고 모호한 신마가 나타난다.약간의 기교로 버그에 시달리고 있는 아이들을 해방시키자!