我正在用Java开发Android和服务器应用程序。 服务器应用程序在Jetty上运行。 Android应用程序在同一台计算机上进行模拟。
Android应用程序向服务器发送POST请求,但服务器的处理程序将其解释为GET。
当我使用发送HTTP工具来模拟POST请求时,它运行正常(我的意思是方法的类型是POST)。
这是Android应用程序的代码片段:
HttpClient client = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(client.getParams(),
10000); // Timeout Limit
HttpResponse response;
// Create message
JSONObject json = new JSONObject();
json.put("request_type", "info");
json.put("user_name", mEmail);
// Send message and get response
StringEntity se = new StringEntity(json.toString());
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
HttpPost post = new HttpPost("http://10.0.2.2:8080/app");
post.setEntity(se);
post.setHeader("Accept", "application/json");
post.setHeader("Content-Type", "application/json; charset=UTF-8");
response = client.execute(post);
这是处理程序的代码:
public void handle(String target, Request baseRequest,
HttpServletRequest request, HttpServletResponse response) {
System.out.println(request.getMethod());
}
我不知道会出现什么问题,因为我认为如果我使用HttpPost,方法类型应该是POST。
答案 0 :(得分:11)
如果可以,请您发布完整的处理程序或处理程序初始化。但我会猜测答案。
我感觉您的POST请求实际上是通过302重定向的,因此处理程序正确地将其作为GET请求接收。
默认情况下,带有“/ app”上下文的Jetty ContextHandler实际上会将任何请求重定向到“/ app”到“/ app /”,请查看setAllowNullPathInfo。
因此,您有两种可能的解决方案,在您的ContextHandler上调用setAllowNullPathInfo(true)
,或将客户端上的帖子网址更改为HttpPost post = new HttpPost("http://10.0.2.2:8080/app/");
可以帮助您在jetty上启用RequestLogs,请参阅Jetty/Tutorial/RequestLog
使用以下服务器,您可以通过请求日志查看/ app请求与/ app /之间的区别。
public class RequestLogPost {
public static class PostHandler extends ContextHandler {
public PostHandler() {
setContextPath("/app");
// setAllowNullPathInfo(true); // enable to see difference in request handling
}
@Override
public void doHandle(String target, Request baseRequest, HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
System.out.println(request.getMethod());
response.setStatus(HttpStatus.OK_200);
baseRequest.setHandled(true);
}
}
public static void main(String[] args) throws Exception {
Server server = new Server(5555);
HandlerCollection handlers = new HandlerCollection();
handlers.addHandler(new PostHandler());
handlers.addHandler(new DefaultHandler());
handlers.addHandler(createRequestLogHandler());
server.setHandler(handlers);
server.start();
server.join();
}
private static RequestLogHandler createRequestLogHandler() {
final int RETAIN_FOREVER = 0; // see RolloverFileOutputStream, 0 == forever.
RequestLogHandler logHandler = new RequestLogHandler();
NCSARequestLog ncsaRequestLog = new AsyncNCSARequestLog("requests.log");
ncsaRequestLog.setAppend(true);
ncsaRequestLog.setExtended(true);
ncsaRequestLog.setLogTimeZone("GMT");
ncsaRequestLog.setRetainDays(RETAIN_FOREVER);
logHandler.setRequestLog(ncsaRequestLog);
return logHandler;
}
}
从请求日志中,将请求发送到“/ app”,结果为302
[2013年7月30日:12:28:09 +0000]“POST / app HTTP / 1.1”302 0
[2013年7月30日:12:28:09 +0000]“GET / app / HTTP / 1.1”200 0
直接请求“/ app /”:
[2013年7月30日:12:28:16 +0000]“POST / app / HTTP / 1.1”200 0