0

Web サービスにデータを投稿する必要があるアプリを作成しています。そのために、そのチュートリアルを使用しました。

メソッド「get」は機能していますが、投稿は機能していません。

Web サービス コード :

[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
UriTemplate = "picture")]
public void UploadPicture(RReport report)
{
    if(report == null)
        throw new WebFaultException<string>("Bad parameter", HttpStatusCode.BadRequest);

    //other stuff
}

Web サービスが期待するものは次のようになります。

以下は、リクエスト Json 本文の例です。

{ "PictureBase64":"文字列コンテンツ" }

そして今、アンドロイドの部分:

//Localhost URI
String url = "http://10.0.2.2:51136/API/picture";
RestClient client = new RestClient(url);
try {
    Report r = new Report("ok");

    //Convert in json
    String report = new Gson().toJson(r);
    //What shows the log => {"PictureBase64":"ok"}
    Log.i("Json", report);
    //Add the param
    client.AddParam("report", report);

    //set the header
    client.AddHeader("Content-Type","application/json");
    client.Execute(RequestMethod.POST);
} catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

 String response = client.getResponse();
 Log.i("Response", response);

そして今、アンドロイド部分からのエラー:

?<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Request Error</title>
        <style>BODY { color: #000000; background-color: white; font-family: Verdana; margin-left: 0px; margin-top: 0px; } #content { margin-left: 30px; font-size: .70em; padding-bottom: 2em; } A:link { color: #336699; font-weight: bold; text-decoration: underline; } A:visited { color: #6699cc; font-weight: bold; text-decoration: underline; } A:active { color: #336699; font-weight: bold; text-decoration: underline; } .heading1 { background-color: #003366; border-bottom: #336699 6px solid; color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal;margin: 0em 0em 10px -20px; padding-bottom: 8px; padding-left: 30px;padding-top: 16px;} pre { font-size:small; background-color: #e5e5cc; padding: 5px; font-family: Courier New; margin-top: 0px; border: 1px #f0f0e0 solid; white-space: pre-wrap; white-space: -pre-wrap; word-wrap: break-word; } table { border-collapse: collapse; border-spacing: 0px; font-family: Verdana;} table th { border-right: 2px white solid; border-bottom: 2px white solid; font-weight: bold; background-color: #cecf9c;} table td { border-right: 2px white solid; border-bottom: 2px white solid; background-color: #e5e5cc;}</style>
    </head>
    <body>
        <div id="content">
        <p class="heading1">Request Error</p>
        <p xmlns="">The server encountered an error processing the request. Please see the <a rel="help-page" href="http://10.0.2.2:51136/API/help">service help page</a> for constructing valid requests to the service.</p>
        </div>
    </body>
</html>

EDIT:私のWebサービスを呼び出す新しい方法:

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost(myWebservice);

StringEntity input = new StringEntity(myJson);
input.setContentType("application/json");
postRequest.setEntity(input);

HttpResponse response = httpClient.execute(postRequest);
4

1 に答える 1

1

コンテンツ タイプを JSON に設定していますが、JSON を投稿していません。値が文字列であるキーと値のペアを投稿しています (たまたま JSON ですが、関係ありません)。あなたの Web サービスは、JSON 本体またはフォーム データを必要としていますか?

JSON本体ではなくパラメーターを投稿したい場合は、MIMEタイプを : に設定しapplication/x-www-form-urlencoded、パラメーターをURLエンコードしていることを確認してください(たぶん、restletがそれを行いますが、わかりません)。

一方、実際に JSON 本文を投稿したい場合は、MIME タイプをそのままにして、次のようにします。

StringRepresentation sr = new StringRepresentation(myJsonString);
Representation rep = client.post();

また、これで問題が解決しない場合は、サーバーからのステータス コードを知っておくとよいでしょう。404? 400? 403? 使用している Web サービスが正しいコードを返すと仮定すると、根本原因を見つけるのに非常に役立ちます。

于 2012-06-28T15:38:48.423 に答える