XMLHttpRequest.WSDL запрос.readyState == 4, но статус == 0 - PullRequest
0 голосов
/ 01 июня 2018

Я пытаюсь разобрать информацию WSDL из http://rates.kazpost.kz/postratesprodv2/postratesws.wsdl Но когда я пытаюсь это сделать, у меня ничего нет.xmlhttp.readyState == 4, но xmlhttp.status == 0.

var xmlhttp = new XMLHttpRequest();
	xmlhttp.open('POST', 'http://rates.kazpost.kz/postratesprodv2/postratesws.wsdl', true);

	// build SOAP request
	var sr =
		'<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pos="http://webservices.kazpost.kz/postratesws">' +
		'<soapenv:Header/>' +
		'<soapenv:Body>' +
			'<pos:GetPostRateRequest>' +
				'<pos:GetPostRateInfo>' +
					'<pos:SndrCtg>1</pos:SndrCtg>' +
					'<pos:Product>P102</pos:Product>' +
					'<pos:MailCat>1</pos:MailCat>' +
					'<pos:SendMethod>2</pos:SendMethod>' +
					'<pos:Weight>750</pos:Weight>' +
					'<pos:Dimension>s</pos:Dimension>' +
					'<pos:Value>100</pos:Value>' +
					'<pos:From>050031</pos:From>' +
					'<pos:To>010001</pos:To>' +
					'<pos:ToCountry>au</pos:ToCountry>' +
				'</pos:GetPostRateInfo>' +
			'</pos:GetPostRateRequest>' +
		'</soapenv:Body>' +
		'</soapenv:Envelope>';

	xmlhttp.onreadystatechange = function () {
		if (xmlhttp.readyState == 4) {
			if (xmlhttp.status == 200) {
				alert('done. use firebug/console to see network response');
			} else {
				alert('ERROR. Status: ' + xmlhttp.status + " " + xmlhttp.statusText);
			}
		}
	}
	// Send the POST request
	xmlhttp.setRequestHeader('Content-Type', 'text/xml');
	
	xmlhttp.send(sr);
	// send request
	// alert("Ready.");

1 Ответ

0 голосов
/ 01 июня 2018

Похоже, что вы пытаетесь сделать запрос http при подключении https, поэтому запрос заблокирован браузером по соображениям безопасности.

HTTP-запрос Ajax через HTTPS Страница дляподробнее

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...