- 论坛徽章:
- 0
|
我想用socket向http服务器发送请求,模拟普通的页面递交表单的过程。
环境是:服务器用的JSP服务器TOMCAT 5.0。
JSP页面的form表单为:
<form name="form1" method="post" action="<%=basePath%>/servlet/IndexServlet">
username:<input type="text" name="username" id="textfield">
password:<input type="text" name="password" id="textfield">
<input type="submit" name="button" id="button" value="submit">
</form>
现在想使用socket 模拟浏览器递交HTTP请求
SOCKET代码(只贴HTTP请求头部,多余的就没贴出来)
sprintf(request,
"POST %s HTTP/1.1\r\nAccept: */*\r\nHost: %s:%d\r\nConnection: Close\r\n\r\nusername=hello&password=world"
, host_file, ip, port); //create http header
这个代码或许看起来比较累,不过看运行结果就很方便了
运行结果:
POST http://192.168.1.154:8888/httpStudy/servlet/IndexServlet HTTP/1.1
Accept: */*
Host: 192.168.1.154:8888
Connection: Close //http请求的头部
username=hello&password=world //带的参数
request length = 161
send = 161 //这说明所有的请求数据都已经递交给了服务器
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: text/html;charset=ISO-8859-1
Date: Thu, 06 May 2010 06:32:57 GMT
Server: Apache-Coyote/1.1
Connection: close //响应的头部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD><TITLE>A Servlet</TITLE></HEAD>
<BODY>
username = null, password = null, using the POST method
</BODY>
</HTML> //响应的正文
问题是:参数部分没有被服务器获取,服务器端或者请求参数的代码是JAVA代码:
String username = (String)request.getParameter("username");
String password = (String)request.getParameter("password");
不知道有谁能知道问题出在哪里?感谢您的帮助 |
|