0

我的机器上有一个简单的 WCF Web 服务,我已经开发了它来为 Android 和 IOS 设备提供服务。

该服务有一个方法如下:

[OperationContract]
    [WebInvoke(RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "/?message={message}")]
    string ServiceMessage(string message);

我有 3 个客户端,一个使用 HttpWebRequest 的 .NET 测试客户端运行良好,一个 IOS 客户端运行良好,一个 Android 客户端使用 HttpPost 和 HttpClient 类开发失败。

使用 Fiddler 反向代理我已经调试了 .net 客户端的输出:

POST http://127.0.0.1:8888/Service1.svc/?message=_|JSON MESSAGE BODY|_HTTP/1.1
Content-Type: application/json; charset=utf-8
Host: 127.0.0.1:8888
Content-Length: 338
Expect: 100-continue
Connection: Keep-Alive

_|JSON MESSAGE BODY|_

另一方面,这是 Android HTTP Post 的输出:

POST http://10.0.2.2:8888/Service1.svc/ HTTP/1.1
Content-Type: application/json; charset=utf-8
Content-Length: 139
Host: 10.0.2.2:8888
Connection: Keep-Alive
User-Agent: Apache-HttpClient/UNAVAILABLE (java 1.4)
Expect: 100-Continue

message=_|JSON MESSAGE BODY|_

如您所见,.Net 将消息参数放在 Post 的顶部,并且没有将消息变量名称放在底部,而 Android 没有将消息正文放在 Post 的顶部,而是将消息变量名称放在底端。

这是我的 Android 邮政编码,

    HttpPost httpPost = new HttpPost(url);      
    String messageBody = "message=" + jsonMessageParameter;
    StringEntity entity = new StringEntity(messageBody);
    httpPost.setEntity(entity);
    httpPost.setHeader("Content-Type", "application/json; charset=utf-8");
    HttpResponse response = hc.execute(httpPost);
    InputStream content = response.getEntity().getContent();
    String json = ConvertStreamToString(content);

使用此代码调用时,会调用服务器方法,但消息方法参数为空。我尝试使用 Uri.Builder 类来让 android 帖子将消息放在标题中,但效果不佳。如果有人可以在这里帮助我,我会坚持几个小时。

先感谢您 ,

詹姆士

编辑 :

我将Android代码更改为:

    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
    nameValuePairs.add(new BasicNameValuePair("message", jsonMessageParameter));

    HttpPost httpPost = new HttpPost(url);
     UrlEncodedFormEntity urlEncodedFromEntity = new UrlEncodedFormEntity(
     nameValuePairs);
     urlEncodedFromEntity.setContentType(new BasicHeader("Content-Type",
     "application/json; charset=utf-8"));

    httpPost.setEntity(urlEncodedFromEntity);

    InputStream postStream = httpPost.getEntity().getContent();
    String postOutput = ConvertStreamToString(postStream);
    HttpResponse response = hc.execute(httpPost);
    InputStream content = response.getEntity().getContent();
    String json = ConvertStreamToString(content);

但 Fiddler 的监控仍然如下:

POST http://10.0.2.2:8888/Service1.svc/ HTTP/1.1
Content-Length: 189
Content-Type: application/json; charset=utf-8
Host: 10.0.2.2:8888
Connection: Keep-Alive
User-Agent: Apache-HttpClient/UNAVAILABLE (java 1.4)
Expect: 100-Continue

message=_|MESSAGE_JSON|_
4

2 回答 2

1

这里有几点。

首先,您专门添加message=到您的 Android POST 正文中:

String messageBody = "message=" + jsonMessageParameter;

这也可能是有问题的,因为您指定Content-Type: application/json但通过添加message=您没有提供有效的 JSON 对象。

其次,为什么 .Net 实现将 JSON 对象复制为 URL 和正文中的参数?对于 POST 请求,这看起来很奇怪且非常罕见,如果您的 JSON 对象使 URL 超过最大 URL 长度,可能会导致问题。

所以我会尝试message=在正文中删除并将 JSON 对象作为 URL 参数删除,因为处理 POST 的服务器应该读取正文而不是 URL。

于 2012-04-22T11:12:23.317 回答
0

HttpPost 用于发布,afaik。

String url;
input = url + URLEncoder.encode(messageBody, "utf-8");
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(input);
InputStream stream = httpclient.execute(httpget).getEntity().getContent();
String s = streamToString(stream);
JSONObject jObject = new JSONObject(s); 

这个非常精确的代码(加上一些 try/catch)适用于我查询 GoogleBooks,也许你可以毫不费力地将它调整到你的服务中?

最好的祝福。

于 2012-04-22T10:53:02.007 回答