我正在使用POST方法向REST(eXist db)Web服务提交HTML表单。正常提交正在提供 400错误请求
这是我的HTML代码
<html>
<script type="text/javascript">
/* function createXMLHttpRequest()
{
if( typeof XMLHttpRequest == "undefined" )
XMLHttpRequest = function()
{
try
{
return new ActiveXObject("Msxml2.XMLHTTP.6.0")
}
catch(e) {}
try
{
return new ActiveXObject("Msxml2.XMLHTTP.3.0")
}
catch(e) {}
try
{
return new ActiveXObject("Msxml2.XMLHTTP")
}
catch(e) {}
try
{
return new ActiveXObject("Microsoft.XMLHTTP")
}
catch(e) {}
throw new Error( "This browser does not support XMLHttpRequest." )
};
return new XMLHttpRequest();
}
var AJAX = createXMLHttpRequest();*/
function submitForm()
{
//AJAX.open("POST",'http://localhost:8899/exist/rest/db/xql/sample.xq');
// AJAX.send(document.form.xmlData.value);
document.form.submit();
};
</script>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<form name='form' action="http://localhost:8899/exist/rest/db/xql/sample.xq" enctype="text/plain" method="post">
<input type="text" name="xmlData"/>
<input type="button" value="Submit" onclick="submitForm()";>
</form>
</body>
</html>
评论的代码是使用AJAX发送POST请求。 我捕获了表头提交和AJAX提交的http标头请求和响应 这些是请求标头:
HTML表单提交标题:
(Request-Line) POST /exist/rest/db/xql/sample.xq HTTP/1.1
Host localhost:8899
User-Agent Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20100101 Firefox/12.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language en-us,en;q=0.5
Accept-Encoding gzip, deflate
Connection keep-alive
Content-Type text/plain
Content-Length 26
AJAX请求标题:
(Request-Line) POST /exist/rest/db/xql/sample.xq HTTP/1.1
Host localhost:8899
User-Agent Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20100101 Firefox/12.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language en-us,en;q=0.5
Accept-Encoding gzip, deflate
Connection keep-alive
Content-Length 16
Content-Type text/plain; charset=UTF-8
Origin null
Pragma no-cache
Cache-Control no-cache
我的代码中没有出错。 我在这工作了2天,但我找不到任何解决方案。 请仔细研究并提供解决方案。
提前致谢。
答案 0 :(得分:0)
我很确定这是因为您只发送数据中的值。
您需要发送一个名称=值对。
答案 1 :(得分:0)
您的代码会将数据汇总到服务器中。服务器端代码必定存在问题。
从checkupdown.com引用有关错误400
的报价HTTP循环中的400个错误
1.任何客户端(例如您的Web浏览器或我们的CheckUpDown机器人)都会经历以下周期:
2.从站点的IP名称(没有前导'http://'的站点URL)获取IP地址。此查找(将IP名称转换为IP地址)由域名服务器(DNS)提供。
3.打开与该IP地址的IP套接字连接。
4.通过该套接字写入HTTP数据流。
5.作为响应,从Web服务器接收HTTP数据流。此数据流包含状态代码,其值由HTTP协议确定。解析此数据流以获取状态代码和其他有用信息。
当客户端收到识别为“400”的HTTP状态代码时,上述最后一步会发生此错误。
答案 2 :(得分:0)
您的目标是接受POST请求,还是只接受GET?
答案 3 :(得分:0)
但是你没有用Ajax POST发送任何参数?
Ajax代码应如下所示:
var xmlData=encodeURIComponent(document.getElementById("xmlData").value);
var parameters="xmlData="+xmlData;
AJAX.open("POST", "'http://localhost:8899/exist/rest/db/xql/sample.xq", true)
AJAX.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
AJAX.send(parameters)