1

私がここで何をしているのか見ている人はいますか? 私のaspサイトでこのスクリプトを使用しようとしています。$z:value[article.number] は私の ASP の art.number です。私の記事をクリックすると、写真が表示されます。

よろしくフランク

<script type="text/javascript">
var symbol = "MSFT"; 
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "http://produktinfo.byggtjeneste.no/ProduktInfo.asmx?op=HentBildeLenkeTyped",true);
xmlhttp.onreadystatechange=function() {
 if (xmlhttp.readyState == 4) {
  alert(xmlhttp.responseText);
  var json = XMLObjectifier.xmlToJSON(xmlhttp.responseXML);
  var result = json.Body[0].HentBildeLenkeTypedResponse[0].HentBildeLenkeTypedResult[0].Text;
  json = XMLObjectifier.xmlToJSON(XMLObjectifier.textToXML(result));
  alert(SModulNr + ' ProduktInfo: $' + json.Stock[0].Last[0].Text); 
 }
}
xmlhttp.setRequestHeader("SOAPAction", "http://produktinfo.byggtjeneste.no/HentBildeLenkeTyped");
xmlhttp.setRequestHeader("Content-Type", "text/xml");
var 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> ' +
     '<HentBildeLenkeTyped xmlns="http://produktinfo.byggtjeneste.no/"> ' +
       '<sModulNr> + $z:value[article.number] + </sModulNr> '+
       '<iSize>xlarge</iSize> '+
     '</HentBildeLenkeTyped> ' +
   '</soap:Body> ' +
 '</soap:Envelope>';
xmlhttp.send(xml);

</script>

これは私のプロバイダーからのオリジナルです。

POST /ProduktInfo.asmx HTTP/1.1
Host: produktinfo.byggtjeneste.no
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <HentBildeLenkeTyped xmlns="http://produktinfo.byggtjeneste.no/">
      <sModulNr>string</sModulNr>
      <iSize>None or small or large or xlarge or original or largeThumbnail</iSize>
    </HentBildeLenkeTyped>
  </soap12:Body>
</soap12:Envelope>

HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <HentBildeLenkeTypedResponse xmlns="http://produktinfo.byggtjeneste.no/">
      <HentBildeLenkeTypedResult>string</HentBildeLenkeTypedResult>
    </HentBildeLenkeTypedResponse>
  </soap12:Body>
</soap12:Envelope>
4

1 に答える 1

0

この行

'<sModulNr>$z:value[article.number]</sModulNr>  '

あなたが間違っているところです。必要な記事番号ではなく、文字通り値「$z:value[article.number]」を要求しています。

あなたが投稿したものから $z が何であるかは正確にはわかりませんが、おそらく次の行に沿って何かが必要になるでしょう

'<sModulNr>' + $z:value[article.number] + '</sModulNr>'
于 2012-06-17T18:52:29.783 に答える