0

了解しました。以前に質問しました...SOAPプロトタイプAJAXSOAPActionヘッダーの質問(残念ながら、ハイパーリンクできません。「2」リンクの担当者が足りません...以下を参照してください)

これはうまくいきませんでした。Prototypeと関係があると思いますが、onSuccessとして0を返します。コンテンツタイプのutf-8形式がわかりません。今、私がまっすぐなjavascriptに戻って、xmlhttprequestを使用すると

<html xmlns="http://www.w3.org/1999/xhtml">

    function getUVIndex() {
        // In Firefox, we must ask the user to grant the privileges we need to run.
        // We need special privileges because we're talking to a web server other
        // than the one that served the document that contains this script. UniversalXPConnect
        // allows us to make an XMLHttpRequest to the server, and
        // UniversalBrowserRead allows us to look at its response.
        // In IE, the user must instead enable "Access data sources across domains"
        // in the Tools->Internet Options->Security dialog.
        if (typeof netscape != "undefined") {
            netscape.security.PrivilegeManager.
                    enablePrivilege("UniversalXPConnect UniversalBrowserRead");
        }
        // Create an XMLHttpRequest to issue the SOAP request. This is a utility
        // function defined in the last chapter.
        var request = new XMLHttpRequest();
        // We're going to be POSTing to this URL and want a synchronous response
        request.open("POST", "http://iaspub.epa.gov/uvindexalert/services/UVIndexAlertPort?wsdl", false);

        request.onreadystatechange=function() {
                if (request.readyState==4) {
                    var index = request.responseXML.getElementByTagName('index')[0].firstChild.data;
                    alert(request.responseText);
                }
            }
        // Set some headers: the body of this POST request is XML
        request.setRequestHeader("Content-Type", "text/xml");
        // This header is a required part of the SOAP protocol
        request.setRequestHeader("SOAPAction", '""');
        // Now send an XML-formatted SOAP request to the server
        request.send(               
            '<?xml version="1.0" encoding="utf-8"?>' +
            '<soap:Envelope' +
            ' xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"' +
            ' xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"' +
            ' xmlns:tns="urn:uvindexalert" xmlns:types="urn:uvindexalert/encodedTypes"' +
            ' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"' +
            ' xmlns:xsd="http://www.w3.org/2001/XMLSchema">' +
            '  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">' +
            '    <tns:getUVIndexAlertByZipCode>' +
            '       <in0 xsi:type="xsd:string">12306</in0>' +
            '   </tns:getUVIndexAlertByZipCode>' +
            '  </soap:Body>' +
            '</soap:Envelope>'

            );
        // If we got an HTTP error, throw an exception
        if (request.status != 200) throw request.statusText;

        //return request.responseXML.childNodes[0].childNodes[1].childNodes[3].childNodes[5].textContent;
    }

    getUVIndex();
</script>

これにより、onreadystatechangeが呼び出されることはありません。return request.responseXML.childNodes [0] .childNodes [1] .childNodes [3] .childNodes[5].textContent;のコメントを外した場合。

必要な値を取得し、Firebugを使用している場合は、readyState==4およびstatus==200が表示されます(これを確認しているわけではありません)。私は通常、スプーンで餌をやる必要はありませんが、なぜリスナーから必要な値が戻らないのか、なぜ呼び出されないのかがわかりません。また、これは本当に重要なことではありませんが、Firefoxでのリクエストをクロスドメインにすることを承認しています。これは実際にはモバイル用であるため、通話でクロスドメインの確認を行う必要はなく、自動的に行われます。

誰かがこれを見て、私が見落としていたものを見てくれることを願っています。ありがとう!

4

1 に答える 1

1

onreadystatechangeは、サーバーへの非同期リクエストに対してのみ呼び出されます。コードは同期リクエストを送信しています。

open呼び出しの3番目のパラメーターをtrueに設定します(または、デフォルトがtrueであるため、3番目のパラメーターを削除します)。

request.open("POST", "http://iaspub.epa.gov/uvindexalert/services/UVIndexAlertPort?wsdl", true);

http://msdn.microsoft.com/en-us/library/ms536648(VS.85).aspx

于 2010-02-26T03:56:48.793 に答える