0

Azure から新しいモバイル サービスを作成しようとしましたが、データは Json によって正しく公開されています。

https://lifehop.azure-mobile.net/tables/USERPF

USERPF はサンプル テーブルです。

質問を簡単にするために、許可を「全員」に変更しました。

問題は、以下にリストされているコードが機能しないことです。エラー メッセージ:リモート サーバーがエラーを返しました: [挿入] ボタンをクリックして USERPF に新しいレコードを挿入したときに見つかりませんでした...

    private void butInsert_Click(object sender, RoutedEventArgs e)
    {
        USERPF item = new USERPF();
        item.Column1 = 789;
        item.Column2 = 789;

        WebClient wc = new WebClient();
        wc.Headers["Content-Type"] = "application/x-www-form-urlencoded";
        //wc.Headers["X-ZUMO-APPLICATION"] = "";
        wc.UploadStringCompleted += (ss, arg) =>
        {
            if (arg.Error == null)
            {
                MessageBox.Show("OK");
            }
            else
            {
                MessageBox.Show(arg.Error.Message);
            }
        };

        wc.UploadStringAsync(
            new Uri("https://lifehope.azure-mobile.net/tables/USERPF/"),
            "POST", JsonHelper.ObjectToJson(item, typeof(USERPF)));
    }

//USERPF.cs

public class USERPF
{
    [System.Runtime.Serialization.IgnoreDataMember()]
    public int id { get; set; }
    [System.Runtime.Serialization.DataMember()]
    public int Column1 { get; set; }
    [System.Runtime.Serialization.DataMember()]
    public int Column2 { get; set; }
}

//JsonHelper.cs

    public static string ObjectToJson(object obj, Type type)
    {
        try
        {
            //Create a stream to serialize the object to.
            MemoryStream ms = new MemoryStream();

            // Serializer the User object to the stream.
            DataContractJsonSerializer ser = new DataContractJsonSerializer(type);
            ser.WriteObject(ms, obj);
            byte[] json = ms.ToArray();
            ms.Close();
            return Encoding.UTF8.GetString(json, 0, json.Length);
        }
        catch (Exception ex)
        {
           MessageBox.Show(ex.Message);
            return string.Empty;
        }
    }
4

2 に答える 2

2

JSONデータを送信していますが、コンテンツタイプが異なると言っています。

wc.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 

リクエストに正しいコンテンツタイプを設定します。

wc.Headers["Content-Type"] = "application/json"; 

無関係なもの:タイプがで装飾されて[DataContract]いない場合は、プロパティColumn1とColumn2をで装飾する必要はありません[DataMember]

于 2012-10-04T03:30:49.860 に答える
0

arg.Error をにキャストしてみてWebException、Statuce コードを確認してください。401 (Unauthorized) かもしれません

 var webException = arg.Error as WebException;
 if(webException == null) return;


   if (webException.Response != null)
   { 
     var response = (HttpWebResponse)webException.Response; 
     var status  = response.StatusCode; //press F9 here
   }
于 2012-10-03T10:59:27.637 に答える