javascript soap xml到JS变量

jjjwad0x  于 2023-05-12  发布在  Java
关注(0)|答案(1)|浏览(133)

使用postman,我从wsdl url中获得响应,我获得soap响应,所有这些都很好,现在我需要在网站上使用数据,以便我可以将用户输入的数据与我获得的响应进行比较,我设法使用php-curl在网页上获得响应

<?php
 $curl = curl_init();

curl_setopt_array($curl, array(
 CURLOPT_URL => "https://www.dataaccess.com/webservicesserver/numberconversion.wso?WSDL=",
CURLOPT_RETURNTRANSFER => true,
 CURLOPT_CUSTOMREQUEST => "POST",
 CURLOPT_POSTFIELDS =>   "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" 
      xmlns:web=\"http://www.dataaccess.com/webservicesserver/\">\n   
  <soapenv:Header/>\n   
  <soapenv:Body>\n      
        <web:NumberToWords>\n         
          <ubiNum>100</ubiNum>\n      
        </web:NumberToWords>\n   
  </soapenv:Body>\n
    </soapenv:Envelope>",
 CURLOPT_HTTPHEADER => array("content-type: text/xml"),
 ));

   $response = curl_exec($curl);
     $err = curl_error($curl);

    curl_close($curl);

   if ($err) {
     echo "cURL Error #:" . $err;
 } else {
  echo $response;
}

 ?>

输出

<soap-env:envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:header>
 <soap-env:body>
  <n0:zfi_mf_ws_consulta_clienteresponse xmlns:n0="urn:sap-com:document:sap:rfc:functions">
  <e_datos>
    <kunnrdf>123</kunnr>
    <name1>name</name1>
<land1>VE</land1>
   <stras>street</stras>
   <ort01>SAN FRANCISCO</ort01>
   <telf1>0261-215012</telf1>
   <stcd1>J-0701721725-7</stcd1>
     <stcd1_sg>J07017252252177</stcd1_sg>
 <smtp_addr>test@hotmail.com</smtp_addr>
<tatyp_1>Flete</tatyp_1>
    <taxkd_1>0</taxkd_1>
   <tatyp_2> Producto</tatyp_2>
<taxkd_2>1</taxkd_2>
  </e_datos>
  <e_respuesta>
  <tipo>
  <clase>
   <nro>000</nro>
  <mensaje></mensaje>
</clase>
</tipo>
  </e_respuesta>
  </n0:zfi_mf_ws_consulta_clienteresponse></soap-env:body>
</soap-env:header>
</soap-env:envelope>

如何只获取值,然后用它与另一个数据进行比较,看看它是否匹配,另外我需要所有其他的用于另一种用途(用js输入字段)
谢谢

tp5buhyn

tp5buhyn1#

您可以将字符串解析为XML,然后通过TagName进行搜索,这里有一个示例,我在其中获得了Movie-objects的列表。

var doc;
var parser = new DOMParser();  
doc = parser.parseFromString(responseXML.data, 'text/xml');

var x = doc.getElementsByTagName("d4p1:Movie");
var movies = [];
for (var i= 0;i < x.length; i++)  
    { 
    movies.push({
        id: x[i].getElementsByTagName("d4p1:Id")[0].childNodes[0].nodeValue
        title: x[i].getElementsByTagName("d4p1:Title")[0].childNodes[0].nodeValue,
        overview: x[i].getElementsByTagName("d4p1:Overview")[0].childNodes[0].nodeValue,
        src: x[i].getElementsByTagName("d4p1:Poster")[0].childNodes[0].nodeValue
    });

相关问题