4

すべての Azure テーブル エラーの一覧を取得し、それらをtry...catchブロックで処理するためのクリーンな方法を見つけたいと考えています。

たとえば、InnerException メッセージを直接コーディングして比較する必要はありませんString.Contains("The specified entity already exists")。これらのエラーをトラップする正しい方法は何ですか?

代替テキスト

4

4 に答える 4

3

You could try looking at the values in the Response, rather that the inner exception. This is an example of one of my try catch blocks:

try {
    return query.FirstOrDefault();
}
catch (System.Data.Services.Client.DataServiceQueryException ex)
{
    if (ex.Response.StatusCode == (int)System.Net.HttpStatusCode.NotFound) {
        return null;
    }
    throw;
}

Obviously this is just for the item doesn't exist error, but I'm sure you can expand on this concept by looking at the list of Azure error codes.

于 2010-09-18T05:17:24.657 に答える
3

オブジェクトをテーブルに追加する際のエラーを処理するには、次のコードを使用できます。

try {
  _context.AddObject(TableName, entityObject);
  _context.SaveCangesWithRetries(); 
}
catch(DataServiceRequestException ex) {
  ex.Response.Any(r => r.StatusCode == (int)System.Net.HttpStatusCode.Conflict) 
  throw;
}

他の回答で述べたように、次の場所で TableStorage エラーのリストを見つけることができます: http://msdn.microsoft.com/en-us/library/dd179438.aspx

于 2011-07-08T08:06:58.613 に答える
2

ここで私のコードを参照してください: http://blog.smarx.com/posts/testing-existence-of-a-windows-azure-blob。パターンは、StorageClientException をキャッチし、.ErrorCode プロパティを使用して StorageErrorCode の定数と照合することです。

于 2010-09-18T19:32:35.443 に答える
1

これはAzure Table Whitepaperで提供されているコードですが、これが smark の返信よりも価値があるかどうかはわかりません。

   /*
         From Azure table whitepaper

         When an exception occurs, you can extract the sequence number (highlighted above) of the command that caused the transaction to fail as follows:

try
{
    // ... save changes 
}
catch (InvalidOperationException e)
{
    DataServiceClientException dsce = e.InnerException as DataServiceClientException;
    int? commandIndex;
    string errorMessage;

    ParseErrorDetails(dsce, out commandIndex, out errorMessage);
}


          */

-

    void ParseErrorDetails( DataServiceClientException e, out string errorCode, out int? commandIndex, out string errorMessage)
    {

        GetErrorInformation(e.Message, out errorCode, out errorMessage);

        commandIndex = null;
        int indexOfSeparator = errorMessage.IndexOf(':');
        if (indexOfSeparator > 0)
        {
            int temp;
            if (Int32.TryParse(errorMessage.Substring(0, indexOfSeparator), out temp))
            {
                commandIndex = temp;
                errorMessage = errorMessage.Substring(indexOfSeparator + 1);
            }
        }
    }

    void GetErrorInformation(  string xmlErrorMessage,  out string errorCode, out string message)
    {
        message = null;
        errorCode = null;

        XName xnErrorCode = XName.Get("code", "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata");
        XName xnMessage = XName.Get  ( "message",    "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata");

        using (StringReader reader = new StringReader(xmlErrorMessage))
        {
            XDocument xDocument = null;
            try
            {
                xDocument = XDocument.Load(reader);
            }
            catch (XmlException)
            {
                // The XML could not be parsed. This could happen either because the connection 
                // could not be made to the server, or if the response did not contain the
                // error details (for example, if the response status code was neither a failure
                // nor a success, but a 3XX code such as NotModified.
                return;
            }

            XElement errorCodeElement =   xDocument.Descendants(xnErrorCode).FirstOrDefault();

            if (errorCodeElement == null)
            {
                return;
            }

            errorCode = errorCodeElement.Value;

            XElement messageElement =   xDocument.Descendants(xnMessage).FirstOrDefault();

            if (messageElement != null)
            {
                message = messageElement.Value;
            }
        }
    }
于 2010-09-19T14:28:31.517 に答える