ASP_javascript 기술을 사용하여 XML 데이터를 보내고 받는 처리 방법 및 코드

WBOY
풀어 주다: 2016-05-16 19:07:55
원래의
1129명이 탐색했습니다.

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에서 서블릿이나 웹 서비스를 호출하는 것이 매우 쉽습니다!
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿