WebException에서 GetResponse의 본문을 볼 수 없습니다. 이것은 C #의 내 코드입니다.
try {
return GetResponse(url + "." + ext.ToString(), method, headers, bodyParams);
} catch (WebException ex) {
switch (ex.Status) {
case WebExceptionStatus.ConnectFailure:
throw new ConnectionException();
case WebExceptionStatus.Timeout:
throw new RequestTimeRanOutException();
case WebExceptionStatus.NameResolutionFailure:
throw new ConnectionException();
case WebExceptionStatus.ProtocolError:
if (ex.Message == "The remote server returned an error: (401) unauthorized.") {
throw new CredentialsOrPortalException();
}
throw new ProtocolErrorExecption();
default:
throw;
}
헤더는 보이지만 본문은 보이지 않습니다. 요청에 대한 Wireshark의 출력입니다.
POST /api/1.0/authentication.json HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: application/json
Host: nbm21tm1.teamlab.com
Content-Length: 49
Connection: Keep-Alive
userName=XXX&password=YYYHTTP/1.1 500 Server error
Cache-Control: private, max-age=0
Content-Length: 106
Content-Type: application/json; charset=UTF-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
X-Powered-By: ARR/2.5
Date: Mon, 06 Aug 2012 12:49:41 GMT
Connection: close
{"count":0,"startIndex":0,"status":1,"statusCode":500,"error":{"message":"Invalid username or password."}}
WebException에서 메시지 텍스트를 볼 수 있습니까? 감사합니다.
(HttpWebResponse) we.Response를 시도해 보셨습니까? WebException이 잡힌 '우리'는 어디입니까?
—
Justin Harvey
다시 throw 된 예외에서 스택 추적을 유지하려면 사용하지 말고
—
user1713059
throw ex;
단순히 throw;
(기본 경우) 사용하십시오. 또한 (필요한 경우) 사용자 지정 예외의 InnerException (적절한 생성자를 통해)에 원래 WebException을 넣습니다.