2012-08-06 11 views
73

In WebException GetResponseの本文が表示されません。これはC#のコードです:WebExceptionボディを使って全体の応答を取得する方法は?

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のメッセージテキストを表示できますか? ありがとうございます。

+0

あなたは(HttpWebResponseの)we.Responseを試してみました。どこに '私たちはあなたのキャッチWebExceptionですか? –

+1

再スローされた例外でスタックトレースを保持するには、 'throw ex;'を使わず、単に 'throw;'(デフォルトの場合)を使います。さらに(必要な場合)私はオリジナルのWebExceptionをカスタムExceptionsのInnerException(適切なコンストラクタを使用して)に配置します。 – user1713059

答えて

132
var resp = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd(); 

dynamic obj = JsonConvert.DeserializeObject(resp); 
var messageFromServer = obj.error.message; 
+4

JsonConvertに慣れていない人は、NugetのパッケージマネージャーからNewtonsoft.Jsonを入手する必要があります。 – Kyle

+0

あなたは本当に私を救った!ありがとう –

+0

Newtonsoft.Jsonはoptionallなので、Kyleの解説で答えを更新してください。 – Jeroen

27
 try 
     { 
      WebClient client = new WebClient(); 
      client.Encoding = Encoding.UTF8; 
      string content = client.DownloadString("https://sandiegodata.atlassian.net/wiki/pages/doaddcomment.action?pageId=524365"); 
      Console.WriteLine(content); 
      Console.ReadKey(); 
     } 
     catch (WebException ex) 
     { 
      var resp = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd(); 
      Console.WriteLine(resp); 
      Console.ReadKey(); 
     } 
関連する問題