What does HRESULT 0x803D0013 (WS_E_ENDPOINT_FAULT_RECEIVED) mean?

 
Previous Next
WS_E_ENDPOINT_TOO_BUSY WS_E_ENDPOINT_DISCONNECTED

WS_E_ENDPOINT_FAULT_RECEIVED

WS_E_ENDPOINT_FAULT_RECEIVED is a Windows Web Services API HRESULT. It means that the remote endpoint returned a service fault message instead of a normal response. The fault can describe a contract, authorization, validation, processing, or application-level problem.

What to check

  • Parse the documented fault code, subcode and safe detail fields from the received message.
  • Use correlation identifiers to match the fault with server-side logs and the original request.
  • Do not log secrets or raw untrusted fault content without redaction.

Microsoft documentation


Looking for a different code? Search another status or error code.