js 호출 웹 서비스
2283 단어 webservice
<html>
<head>
<title> </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<script>
function search(input) {
var traincode = input.value;
if(traincode) {
var xhr = new XMLHttpRequest();
xhr.open("POST","http://www.webxml.com.cn/WebServices/TrainTimeWebService.asmx", true); //true ,send , 。 ,
xhr.onreadystatechange=function() {
if(xhr.readyState==4) {
if(xhr.status==200) {
alert(xhr.responseText);
alert('revice');
}
}
}
var myxml = '<?xml version="1.0" encoding="utf-8"?>'
+ '<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'
+ '<soap:Body>'
+ '<getDetailInfoByTrainCode xmlns="http://WebXml.com.cn/">'
+ '<TrainCode>' + traincode + '</TrainCode>'
+ '<UserID></UserID>'
+ '</getDetailInfoByTrainCode>'
+ '</soap:Body>'
+ '</soap:Envelope>';
xhr.setRequestHeader("SOAPAction","http://WebXml.com.cn/getDetailInfoByTrainCode");
xhr.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xhr.send(myxml);
alert('over');
}
}
</script>
</head>
<body>
:<input type="text" name="traincode" onblur="search(this)"/>
</body>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법본고는 자바가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법을 실례로 설명한다.다음과 같이 여러분에게 참고할 수 있도록 공유합니다. 자바 관련 내용에 관심이 있는 더 많은 독자들은 본 사이트의 주제를 볼 수 있습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.