在我的HTML5应用中,当我尝试调用SOAP Web服务时,我收到“不支持的媒体类型”错误。
这是我的javascript函数的代码。
function login()
{
var soapMessage = '<?xml version="1.0" encoding="UTF-8"?>'+
'<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:blu="http://www.bluedoortech.com/">'+
'<soapenv:Header/>'+
'<soapenv:Body>'+
'<blu:Connect>'+
'<blu:userID>' + $("#txtUserName").val() + '</blu:userID>'+
'<blu:pwd>' + $("#txtPassword").val() + '</blu:pwd>'+
'</blu:Connect>'+
'</soapenv:Body>'+
'</soapenv:Envelope>';
$.ajax({
url : 'Wealth.asmx' ,
data: soapMessage,
type: "POST",
dataType: "xml",
cache : false,
processData: false
}).success(function(xmlDoc,textStatus) {
alert($(xmlDoc).text());
});
}[1]
这里我还附上了一个错误的屏幕。
出于测试目的,我制作了一个php文件,我使用该php文件来调用这个SOAP Web服务。当我连接到Web服务时,它工作得很好。这是PHP代码。
header("Content-type: text/xml");
$soap_request = file_get_contents('php://input');
$xml = simplexml_load_string($soap_request);
$userIDTag = $xml->xpath('//blu:userID');
$userID = $userIDTag[0][0];
$passwordIDTag = $xml->xpath('//blu:pwd');
$password = $passwordIDTag[0][0];
$client = new SoapClient("Wealth.asmx?WSDL", array('trace' => true));
$objLogin = $client->Connect(array('userID'=>$userID,'pwd'=>$password));
echo $client->__getLastResponse();
请帮助我确定问题。
答案 0 :(得分:3)
正如Joachim Isaksson建议的那样,我添加了内容类型标题,现在它运行良好。我也在这里发帖。
function login()
{
var soapMessage = '<?xml version="1.0" encoding="UTF-8"?>'+
'<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:blu="http://www.bluedoortech.com/">'+
'<soapenv:Header/>'+
'<soapenv:Body>'+
'<blu:Connect>'+
'<blu:userID>' + $("#txtUserName").val() + '</blu:userID>'+
'<blu:pwd>' + $("#txtPassword").val() + '</blu:pwd>'+
'</blu:Connect>'+
'</soapenv:Body>'+
'</soapenv:Envelope>';
$.ajax({
url : 'Wealth.asmx' ,
data: soapMessage,
headers: {
"Content-Type":"text/xml"
},
type: "POST",
dataType: "xml",
cache : false,
processData: false
}).success(function(xmlDoc,textStatus) {
alert($(xmlDoc).text());
});
}