XMLA への要求を策定する方法に関するドキュメントはありますか?
私にとっての icCube XMLA エンドポイントは次のとおりです。http://localhost:8282/icCube/xmla
postman などを使用してエンドポイントへのデモ呼び出しを行いたいのですが、SOAP 要求で渡すパラメーターがわかりません。
私が試してみました:
<x:Envelope xmlns:x="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:schemas-microsoft-com:xml-analysis">
<x:Header>
<urn:Session SessionId="?" mustUnderstand="?"/>
<urn:BeginSession mustUnderstand="?"/>
<urn:EndSession SessionId="?" mustUnderstand="?"/>
</x:Header>
<x:Body>
<urn:Execute>
<Command>
<Statement>
SELECT
{[Customers].[Geography].[All Regions].[North America].[Canada].[Ottawa]} on COLUMNS,
{[Measures].[Count]} on ROWS
FROM [Sales]
</Statement>
</Command>
<Properties/>
</urn:Execute>
</x:Body>
</x:Envelope>
そして、私は空の応答を受け取ります:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<Session SessionId="1hb96vaa7acol14bj97tyokd4f" xmlns="urn:schemas-microsoft-com:xml-analysis"/>
</soap:Header>
<soap:Body>
<ExecuteResponse xmlns="urn:schemas-microsoft-com:xml-analysis">
<return>
<root xmlns="urn:schemas-microsoft-com:xml-analysis:empty"/>
</return>
</ExecuteResponse>
</soap:Body>
</soap:Envelope>
このリクエストを行う方法に関する詳細情報がどこにあるか知っている人はいますか? http://www.iccube.com/support/documentation/user_guide/running_iccube/xmla.phpの icCube ドキュメントは基本的に存在しません。
よろしくお願いします。