SOMA司令部的DataPower

问题描述:

正在尝试下面的SOMA命令发送至https://0.0.0.0:5550/service/mgmt/currentSOMA司令部的DataPower

<soapenv:Envelope xmlns:dp="http://www.datapower.com/schemas/management" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 
<soapenv:Body> 
<dp:request domain="default"> 
    <dp:do-action> 
     <TCPConnectionTest> 
      <RemoteHost>host</RemoteHost> 
      <RemotePort>port</RemotePort> 
     </TCPConnectionTest> 
    </dp:do-action> 
</dp:request> 
</soapenv:Body> 
</soapenv:Envelope> 

,但得到如下回应

<url-open xmlns:dp="http://www.datapower.com/schemas/management" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" > 
<responsecode>500</responsecode> 
<content-type>text/xml</content-type> 
<headers> 
<header name="Content-Type">text/xml</header> 
<header name="Date">Mon, 06 Mar 2017 05:45:14 GMT</header> 
</headers> 
<response> 
<env:Envelope> 
    <env:Body> 
     <env:Fault> 
      <faultcode>env:Client</faultcode> 
      <faultstring>Access Denied (from client)</faultstring> 
     </env:Fault> 
    </env:Body> 
</env:Envelope> 
</response> 
</url-open> 

请帮忙如何获得访问。

您需要使用https://127.0.0.1:5550/service/mgmt/current或盒子的真实IP。您还必须提供基本身份验证登录(授权标头)和/或SSL代理(或客户端代理,具体取决于您的固件)!

如果你有设置别名,你的网卡,你需要使用别名,如:

alias 123.123.123.123=MyIP

然后使用:

https://MyIP:5550/service/mgmt/current

过程,并确保XML管理是并在默认域中的端口5550上运行。

+0

嗨安德斯, Thx的回应。通过Auth头后,可以访问CML管理界面。 –