Di WebException saya tidak dapat melihat isi GetResponse. Ini kode saya di 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;
}
Saya melihat header tetapi saya tidak melihat isi. Ini adalah keluaran dari Wireshark untuk permintaan:
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."}}
Apakah mungkin untuk melihat teks pesan di WebException? Terima kasih.
c#
webexception
iwtu
sumber
sumber
throw ex;
tetapi cukupthrow;
(dalam kasus default). Selain itu (jika diperlukan) saya akan meletakkan WebException asli di InnerException kustom Anda Pengecualian (melalui konstruktor yang sesuai).Jawaban:
sumber
sumber
Ini hanya meningkatkan jawaban yang ada. Saya telah menulis metode yang menangani detail melempar / melempar ulang dengan pesan yang disempurnakan, yang mencakup isi respons:
Ini kode saya (di Client.cs):
Anda menggunakannya dalam klausa tangkapan seperti yang ditunjukkan OP:
sumber