5年前,我正在寻找一个旧线程,要求使用Javascript提供最简单的SOAP代码。
这是评分最高的评论,并标记为已回答:
<html>
<head>
<title>SOAP JavaScript Client Test</title>
<script type="text/javascript">
function soap() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('POST', 'https://somesoapurl.com/', true);
// build SOAP request
var sr =
'<?xml version="1.0" encoding="utf-8"?>' +
'<soapenv:Envelope ' +
'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' +
'xmlns:api="http://127.0.0.1/Integrics/Enswitch/API" ' +
'xmlns:xsd="http://www.w3.org/2001/XMLSchema" ' +
'xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">' +
'<soapenv:Body>' +
'<api:some_api_call soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">' +
'<username xsi:type="xsd:string">login_username</username>' +
'<password xsi:type="xsd:string">password</password>' +
'</api:some_api_call>' +
'</soapenv:Body>' +
'</soapenv:Envelope>';
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {
alert('done. use firebug/console to see network response');
}
}
}
// Send the POST request
xmlhttp.setRequestHeader('Content-Type', 'text/xml');
xmlhttp.send(sr);
// send request
// ...
}
</script>
</head>
<body>
<form name="Demo" action="" method="post">
<div>
<input type="button" value="Soap" onclick="soap();" />
</div>
</form>
</body>
<html>
我已经尝试将其复制并粘贴到.html中以使其运行,因此我可以看到它是如何工作的,但它仍然无法正常工作。在代码的第7行中,我替换了
https://somesoapurl.com/
使用我在Google上搜索时找到的实际免费WSDL网址:
http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL
当我点击&#34; Soap&#34;按钮并查看控制台以查看代码运行,我收到以下错误:
XMLHttpRequest无法加载 http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL。回应 预检请求未通过访问控制检查:否 &#39;访问控制允许来源&#39;标题出现在请求的上 资源。起源&#39; null&#39;因此不允许访问。响应 有HTTP状态码405。
有人可以协助吗?我想使用JavaScript工作来获取这个SOAP客户端调用,这样我就能更好地理解WSDL和SOAP。