WebException একটি শরীরের সাথে পুরো প্রতিক্রিয়া পেতে কিভাবে?


109

ওয়েবএক্সেপশনে আমি getResponse এর শরীর দেখতে পাচ্ছি না। এটি সি # তে আমার কোড:

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;
    }

আমি শিরোলেখ দেখছি তবে আমি শরীর দেখতে পাচ্ছি না। অনুরোধের জন্য এটি ওয়্যারশার্কের আউটপুট:

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 হয়?
জাস্টিন হার্ভে

2
পুনরুত্থিত ব্যতিক্রম স্ট্যাক ট্রেস সংরক্ষণ করার জন্য ব্যবহার না করে throw ex;কেবল throw;(ডিফল্ট ক্ষেত্রে)। অতিরিক্তভাবে (যদি প্রয়োজন হয়) আমি আপনার কাস্টম ব্যতিক্রমগুলির অভ্যন্তরীণ ধারণাটিতে (উপযুক্ত নির্মাণকারীর মাধ্যমে) আসল ওয়েবএক্সসেপশনটি রেখে দেব।
ব্যবহারকারী 1713059

উত্তর:


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

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

8
জসনকনভার্টের সাথে অপরিচিত কারও জন্য আপনাকে নিউটেনসফট.জেসন নেওয়া প্যাকেজ ম্যানেজারের কাছ থেকে নেওয়া উচিত।
কাইল

নিউটোনসফট.জসন optionচ্ছিক হওয়ায় কাইলের ব্যাখ্যা সহ উত্তরটি আপডেট করুন।
জেরোইন

3
এছাড়াও, দয়া করে ব্যাখ্যা করুন যে এই কোডটি একটি চেষ্টা-ক্যাচ কোডব্লকের ক্যাচ ফ্যালব্যাক ক্লজের মধ্যে থাকা উচিত যেখানে অনুরোধটি করা উচিত। আমি জানি এই ক্ষেত্রে এটি মনোযোগ প্রদানকারী পাঠক এবং @ আইটুটির কাছে সুস্পষ্ট, তবে সম্পূর্ণরূপে বিস্তৃত উত্তরগুলি এই উত্তরটি পড়তে শুরু করা ব্যক্তিদের কাছে আসল পার্থক্য আনতে পারে;)
জেরোয়েন

2
স্ট্রিমরিডার আইডিস্পোজেবল কার্যকর করে, তাই এটির ব্যবহারের বিবৃতিতে মোড়ানো কি ভাল অনুশীলন নয়? স্ট্রিম রিডার এর নিষ্পত্তি পদ্ধতির একটি তাত্ক্ষণিক পর্যালোচনা থেকে বোঝা যায় যে এটি সেখানে কিছু গুরুত্বপূর্ণ পরিষ্কার-পরিচ্ছন্নতা করে।
sammy34

@ sammy34 কোন উদ্বেগ, যেহেতু এখানে কোন অপরিচালিত কোড / ডাটা এই ক্ষেত্রে , বর্জ্য collecter এটিকে সহজে সব ব্যবস্থা করতে সক্ষম ... (কিন্তু ব্যবহার ব্যবহার সবসময় একটি ভাল অভ্যাস)
পাউণ্ড

42
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();
}

5

এটি কেবল বিদ্যমান উত্তরের উপর উন্নতি করে। আমি একটি পদ্ধতি লিখেছি যা বর্ধিত বার্তার সাহায্যে নিক্ষেপ / পুনর্বিবেচনার বিবরণ যত্ন নিয়েছে, এতে প্রতিক্রিয়া বডি অন্তর্ভুক্ত রয়েছে:

এখানে আমার কোড (ক্লায়েন্ট। সি) আছে:

/// <summary>
///     Tries to rethrow the WebException with the data from the body included, if possible. 
///     Otherwise just rethrows the original message.
/// </summary>
/// <param name="wex">The web exception.</param>
/// <exception cref="WebException"></exception>
/// <remarks>
///     By default, on protocol errors, the body is not included in web exceptions. 
///     This solutions includes potentially relevant information for resolving the
///     issue.
/// </remarks>
private void ThrowWithBody(WebException wex) {
    if (wex.Status == WebExceptionStatus.ProtocolError) {
        string responseBody;
        try {
            //Get the message body for rethrow with body included
            responseBody = new StreamReader(wex.Response.GetResponseStream()).ReadToEnd();

        } catch (Exception) {
            //In case of failure to get the body just rethrow the original web exception.
            throw wex;
        }

        //include the body in the message
        throw new WebException(wex.Message + $" Response body: '{responseBody}'", wex, wex.Status, wex.Response);
    }

    //In case of non-protocol errors no body is available anyway, so just rethrow the original web exception.
    throw wex;
}

আপনি এটি ওপি-র মতোই ক্যাচ ক্লজে ব্যবহার করুন:

//Execute Request, catch the exception to eventually get the body
try {
    //GetResponse....
    }
} catch (WebException wex) {
    if (wex.Status == WebExceptionStatus.ProtocolError) {
        ThrowWithBody(wex);
    }

    //otherwise rethrow anyway
    throw;
}
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.