I am trying to access a SOAP service hosted on a server using the Chrome browser in window 7. I tested the same service and soap action in SOAPUI and get a response as well as android using icesoap and get the correct response from the server. Now I want to get an answer in the browser with the following code written in java script so that I can do the same so that I can implement it further and it gives me an undefined error with ie xmlHttp.status == 0
The following code that I used and saved as an HTML file in the Windows desktop ( c: /Users/vipin.sahu.OM/Desktop/New folder / soap.html ) and ran it in a browser
<html>
<head>
<title>SOAP JavaScript Client Test</title>
<script type="text/javascript">
function soap() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "http://65.17.222.114/t2green/servicecontract/Courses.svc?wsdl", true);
xmlhttp.setRequestHeader("SOAPAction", "http://tempuri.org/ICourses/GetCountries");
var sr ='<?xml version="1.0" encoding="utf-8"?>' +
'<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">'+
'<soapenv:Header/>'+
'<soapenv:Body>'+
'<tem:GetCountries>'+
'</tem:GetCountries>'+
'</soapenv:Body>'+
'</soapenv:Envelope>';
xmlhttp.onerror = function(e) {
alert("Error ocurred. Error = " + e.message);
}
xmlhttp.ontimeout = function(e) {
alert("Timeout error!");
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
if (xmlHttp.status == 200 || xmlHttp.status == 0) {
alert(xmlhttp.status);
}
else{
alert(xmlhttp.status);
}
}
else{
alert('error in response');
}
}
xmlhttp.setRequestHeader("Content-Length", sr.length);
xmlhttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xmlhttp.send(sr);
}
</script>
<script type="text/javascript">
function test(){
alert('ok alert is still working');
}
</script>
</head>
<body>
<form name="Demo" action="" method="post">
<div>
<input type="button" value="Click Me" onclick="test()" />
<input type="button" value="Soap" onclick="soap()" />
</div>
</form>
</body>
<html>
Here are following url and action I used in android and getting requisite response
URL "http://65.17.222.114/t2green/servicecontract/courses.svc"
Soap_action "http://tempuri.org/ICourses/GetCountries"
-
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:GetCountries/>
</soapenv:Body>
</soapenv:Envelope>