isStagingDatabaseStarted
ステージング・データベースが開始済みかどうかを戻します (True または False)。
統合アプライアンス のみに適用されます。
- 戻り:
- ステージング・データベースが開始済みの場合は True。
例:
以下のコードは、ステージング・データベースが開始済みかどうかを確認する SOAP 要求の例です。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:stag="http://www.approuter.com/schemas/2008/1/staging">
<soapenv:Header>
<stag:sessionId>91997FBCE89093792D40DEF8FDB345DD</stag:sessionId>
</soapenv:Header>
<soapenv:Body>
<stag:isStagingDatabaseStarted/>
</soapenv:Body>
</soapenv:Envelope>
以下は、要求に対する SOAP 応答の例です。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<isStagingDatabaseStartedResponse xmlns="http://www.approuter.com/
schemas/2008/1/staging">
<isStarted>true</isStarted>
</isStagingDatabaseStartedResponse>
</S:Body>
</S:Envelope>