通过索玛脚本在数据导航中导出网关对象

问题描述:

我有50个MPGW,我想通过索玛脚本导出特定/个人网关。我尝试了几个scripta,但没有解决。我试图域出口是工作,但具体objecf出口不working.Please帮助我在这通过索玛脚本在数据导航中导出网关对象

+0

告诉我们你试过的东西,以及当你尝试过时发生了什么。 – bjimba

这是相当简单的,真的,你只需要指出你要导出的对象,例如:

<?xml version="1.0" encoding="UTF-8"?> 
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> 
    <env:Body> 
    <dp:request xmlns:dp="http://www.datapower.com/schemas/management"> 
     <dp:do-export format="ZIP" all-files="false"> 
     <dp:user-comment>This is a SOMA Export...</dp:user-comment> 
     <dp:object class="MultiProtocolGateway" name="MPGW_1" ref-objects="true" ref-files="true"/> 
     <dp:object class="MultiProtocolGateway" name="MPGW_2" ref-objects="true" ref-files="true"/> 
     </dp:do-export> 
    </dp:request> 
    </env:Body> 
</env:Envelope> 
+0

非常感谢您的回答 –