使用XML管理界面的样式表缓存不起作用

时间:2014-06-25 19:50:25

标签: ibm-datapower

我正在尝试使用XML管理界面(SOMA)刷新样式表缓存。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="http://www.datapower.com/schemas/management">
<soapenv:Header/>
<soapenv:Body>
  <man:request domain="mydomain">
     <man:do-action>
        <FlushStylesheetCache>
           <XMLManager class="default"></XMLManager>
        </FlushStylesheetCache>
     </man:do-action>
  </man:request>
</soapenv:Body>
</soapenv:Envelope>

获取错误<log-event level="error">Stylesheet name '' is not valid</log-event>

1 个答案:

答案 0 :(得分:1)

我认为你给出了错误的类类型和空对象名称。

<man:do-action>
        <FlushStylesheetCache>
           <XMLManager class="XMLManager">default</XMLManager>
        </FlushStylesheetCache>
</man:do-action>

类值可以为null。因为它是此请求的选项值。您应该具有XML管理访问权限以使用XML管理界面刷新缓存

相关问题