我需要使用 bash shell 从 icCube 调用管理 API。发送 SOAP 命令的最简单方法是什么,例如:
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<Execute xmlns="urn:schemas-microsoft-com:xml-analysis">
<Command>
<Statement xsi:type="xsd:string">'"$command"'</Statement>
</Command>
</Execute>
</soap:Body>
</soap:Envelope>
最重要的是,如何处理基本身份验证(用户/密码)?