Montnets WAP용 인터페이스를 만들어야 하므로 이 방법을 사용해야 합니다. 다음으로는 MSXML2.XMLHTTP 개체를 사용하는 ASP.net 버전이 있습니다.
request.asp
희미한 Https
set Https=server.createobject("MSXML2.XMLHTTP")
'XMLHTTP 개체 정의
Https.open "POST","http://127.0.0.1/testpost/ response.asp",false
Https.send "echo >123456987654 t;
"
Https.readystate=4인 경우
response.write "제출 성공"
'readstate 읽기 상태가 4이면 성공입니다. 실패하면 당연히 계속 처리할 필요가 없습니다. objstream
set objstream = Server.CreateObject("adodb.stream")
'스트림을 정의하세요. 직접 읽어서 꺼내면 왜곡되기 때문에 처리해야 합니다.
objstream. 1
objstream.Mode =3
objstream.Open
objstream.Write Https.responseBody
objstream.Position = 0
objstream.Type = 2
objstream.Charset = " GB2312" <… 🎜>response.write html
response.asp
'DOMDocument 객체 생성
Set xml = Server.CreateObject ("msxml2.DOMDocument")
xml .async = False
'POST 데이터 로드
xml.Load 요청
If xml.parseError.errorCode <> 0 Then
response.write "데이터를 올바르게 수신할 수 없습니다" & " 설명: " & xml .parseError.reason & "
Line: " & xml.parseError.Line
End If
set blogchild=xml.getElementsByTagName("misc_command")
'the_text =blogchild.item( 0).childnodes(1).text
'the_text=blogchild.item(0).text
'for i=0 to blogchild.length-1
response.write the_text 🎜>
이 방법을 사용하면 ASP에서 서블릿이나 웹 서비스를 호출하는 것이 매우 쉽습니다!