jQueryを使用してSOAPサーバーからの応答を解析する際に問題が発生しました。以下に示すように、データの行が複数あるため、XML応答を配列に変換したいと思います。
これはリクエストです:
<?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>
<GetWorkPos xmlns="http://localhost/apps">
<id>int</id>
</GetWorkPos>
</soap:Body>
</soap:Envelope>
そしてこれは応答です:
<?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>
<GetWorkPosResponse xmlns="http://localhost.com/apps">
<GetWorkPosResult>
<GetWorkPos>
<ProductId>string</ProductId>
<Product>string</Product>
<quantity>decimal</quantity>
<Em>string</Em>
<type>string</type>
</GetWorkPos>
<GetWorkPos>
<ProductId>string</ProductId>
<Product>string</Product>
<Quantity>decimal</Quantity>
<Em>string</Em>
<Type>string</Type>
</GetWorkPos>
</GetWorkPosResult>
</GetWorkPosResponse>
</soap:Body>
</soap:Envelope>
そしてこれは私のコードです:
$(document).ready(function () {
$("#send").click(function (event) {
var wsUrl = "http://localhost/Service.asmx";
var soapRequest =
'<?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> \
<GetWorkPos xmlns="http://localhost.com/apps"> \
<id>' + $("#id").val() + '</id> \
</GetWorkPos> \
</soap:Body> \
</soap:Envelope>';
console.log(soapRequest);
$.ajax({
type: "post",
url: wsUrl,
contentType: "text/xml",
dataType: "xml",
data: soapRequest,
success: processSuccess,
error: processError
});
});
});
function processSuccess(data, status, req, xml, xmlHttpRequest, responseXML) {
$(req.responseXML)
.find('GetWorkPosResult')
.each(function(){
var id = $(this).find('ProductId').text();
console.log(id);
});
}
function processError(data, status, req) {
alert(req.responseText + " " + status);
console.log(data);
console.log(status);
console.log(req);
}