使用经典 ASP VBScript 时无法获取原始 POST 数据



我已经尝试了两天来设置满足第三方提供商要求的端点。他们将通过HTTPS POST向我们发送有关业务对象状态的更新,请求的内容将是JSON。不幸的是,它现在必须用VBScript编写。

目前,我无法获取他们发送给我的请求的原始内容,因此我根本无法处理它。

我创建了一个简单的端点(原始表单.asp)和两个测试页面来演示该问题。首先,我使用 HTML 表单设置了一个简单的测试 HTML 页面(raw-form-test1.asp),它工作正常。第二个测试页 (raw-form-test2.asp) 使用WinHttpRequest将内容发送到终结点。使用它时,数据不存在。我正在尝试通过Request.Body获取它。

原始表单 ASP:

<%
Dim post : post = Request.Body
Response.ContentType = "text/plain"
Response.Write "Your " & Request.ServerVariables("REQUEST_METHOD") & " data was: " & post
%>

原始表单测试1.asp:

<!DOCTYPE html>
<html>
<body>
<form action="raw-form.asp" method="post">
<p><textarea name="data"></textarea></p>
<p><input type="submit"></p>
</form>
</body>
</html>

原始表单测试2.asp:

<%
Dim data : data = Request.Form("data")
Dim resp : resp = ""
If data <> "" Then
Dim http : Set http = CreateObject("WinHttp.WinHttpRequest.5.1")
http.Open "post", "http://localhost:8080/raw-form.asp"
http.Send data
http.WaitForResponse(10)
resp = http.Status & " | " & http.ResponseText
End If
%>
<!DOCTYPE html>
<html>
<body>
<%= Server.HTMLEncode(resp) %>
<form action="raw-form-test2.asp" method="post">
<p><textarea name="data"></textarea></p>
<p><input type="submit"></p>
</form>
</body>
</html>

填写一些随机文本并提交第一个测试时,响应正文如我所期望的那样:

Your POST data was: data=abc

使用第二个测试时,返回的结果resp为:

200 | Your POST data was:

我也尝试使用Request.BinaryRead()但没有成功(VBScript 可以得到它的长度,但不能获得内容 - 可能只是 VB 对类型很糟糕)。我希望有另一种方法来获取数据。

在 raw-form.asp 中,你可以 Response.BinaryWrite Request.BinaryRead 的结果,如下所示:

<%
If Request.TotalBytes > 0 Then    
Response.ContentType = "text/plain"
Response.Write "Your " & Request.ServerVariables("REQUEST_METHOD") & " data was: " 
Response.BinaryWrite Request.BinaryRead(Request.TotalBytes)
End If
%>

或者,可以使用 Request.BinaryRead,然后将字节写入 ADO 流对象,然后可以从中读取文本。下面是以下示例: https://stackoverflow.com/a/9777124/989516

<%
If Request.TotalBytes > 0 Then
Dim lngBytesCount, post
lngBytesCount = Request.TotalBytes
post = BytesToStr(Request.BinaryRead(lngBytesCount))
Response.ContentType = "text/plain"
Response.Write "Your " & Request.ServerVariables("REQUEST_METHOD") & " data was: " & post
End If
Function BytesToStr(bytes)
Dim Stream
Set Stream = Server.CreateObject("Adodb.Stream")
Stream.Type = 1 'adTypeBinary
Stream.Open
Stream.Write bytes
Stream.Position = 0
Stream.Type = 2 'adTypeText
Stream.Charset = "iso-8859-1"
BytesToStr = Stream.ReadText
Stream.Close
Set Stream = Nothing
End Function
%>

仍然试图了解大问题是什么,假设您的端点返回 JSON,您可以在我发布的示例代码中修改以下过程。

Sub http_post()
Dim data : data = Request.Body
Dim resp : resp = ""
If data <> "" Then
Dim http : Set http = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
http.Open "post", "http://localhost:1337/test9.asp?action=2"
Call http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
http.Send "data=" & data
http.WaitForResponse(10)
resp = http.Status & " | " & http.ResponseText
End If
'Interpret the response from the xhr as JSON.
Response.ContentType = "application/json"
Call Response.Write(http.ResponseText)
End Sub
Sub http_xhr()
Dim post : post = Request.Body
Response.ContentType = "application/json"
%>{
data: {
"SomeItem": "SomeData",
"SomeNumber": 1,
"PostedData": "<%= post %>"
}
}<%
End Sub
%>
我刚刚测试了

您的代码并对其进行了一点重组,以便我可以使用一个文件对其进行测试,并且它执行相同的操作。

<%
Dim data, method
Call init()
Sub init()
Dim action
method = UCase(Request.ServerVariables("REQUEST_METHOD") & "")
Select Case method
Case "GET"
Call http_get()
Case "POST"
action = Request.QueryString("action") & ""
If Len(action) > 0 And IsNumeric(action) Then action = CLng(action) Else action = 1
Select Case action
Case 1
Call http_post()
Case 2
Call http_xhr()
End Select
End Select
End Sub
Sub http_get()
%>
<!DOCTYPE html>
<html>
<body>
<form action="?action=1" method="post">
<p><textarea name="data"></textarea></p>
<p><input type="submit"></p>
</form>
</body>
</html>
<%
End Sub
Sub http_post()
Dim data : data = Request.Form("data")
Dim resp : resp = ""
If data <> "" Then
Dim http : Set http = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
http.Open "post", "http://localhost:1337/test9.asp?action=2"
'We are mimicing a form post use x-ww-form-urlencoded.
Call http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
'Need to make sure we pass this as "data=value" so we can use `Request.Form("data") in the xhr call.
http.Send "data=" & data
http.WaitForResponse(10)
resp = http.Status & " | " & http.ResponseText
End If
Call Response.Write(resp)
End Sub
Sub http_xhr()
Dim post : post = Request.Form("data")
Response.ContentType = "text/plain"
Response.Write "Your " & Request.ServerVariables("REQUEST_METHOD") & " data was: " & post
End Sub
%>

使其工作的主要区别是;

  1. 在 xhr 上设置Content-Type标头,以便我们可以调用Request.Form(实际上适用于Request.Body,我身上的新标题)。
  2. 将数据作为编码值传递给 xhrdata=value

最新更新