stopStagingDatabase

ステージング・データベースを停止します。データベースが停止された場合は、成功、データベースの停止に失敗した場合は、失敗を戻します。

統合アプライアンス のみに適用されます。

戻り:
成功または失敗。

例:

以下のコードは、ステージング・データベースを停止するための 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:stopStagingDatabase/>
 </soapenv:Body>
</soapenv:Envelope>
以下は、要求に対する SOAP 応答の例です。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
 <S:Body>
  <stopStagingDatabaseResponse xmlns="http://www.approuter.com/
  schemas/2008/1/staging">
   <success>true</success>
  </stopStagingDatabaseResponse>
 </S:Body>
</S:Envelope>