---
sourceDocument: オーストラリア API リファレンス
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ja-JP/api-reference

 Release :

    - australia

ft:locale :

    - ja-JP

ft:publication_title :

    - オーストラリア API リファレンス

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# 静的 WSDL の使用

# スタティック WSDL の使用 {#ariaid-title1}

* リリースバージョン: Australia
* 
* 更新日 2026年03月12日
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 所要時間：1分

スタティック WSDL を SOAP クライアントにロードして、SOAP Web サービスに要求を行います。
Web サービスクライアントは、

* FakeStockValue プロジェクト。
* StockQuoteBinding Web サービス。
* GetLastTradePrice SOAP 関数。この関数は、実行時に要求レコードを生成します。
{#r_UsingAStaticWSDL__ul_lrm_yxw_sr}
図 : 1. ロードされた WSDL 静的 WSDL のデフォルトの要求 XML を変更して、銘柄記号を含めることができます。

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stoc="http://example.com/stockquote.xsd">
       <soapenv:Header/>
       <soapenv:Body>
          <stoc:TradePriceRequest>IBM</stoc:TradePriceRequest>
       </soapenv:Body>
    </soapenv:Envelope>

この Web サービスエンドポイントに SOAP 要求を送信すると、要求元の SOAP クライアントに次の内容が返されます。

    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
       <SOAP-ENV:Body>
          <GetLastTradePriceOutput xmlns="https://www.service-now.com/vws/FakeStockValue">
             <message>admin2, You were looking for a quote on IBM</message>
          </GetLastTradePriceOutput>
       </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>


