Search code examples
xsltsoapxslt-1.0xslt-2.0ibm-datapower

Turning Probe "Off/On" using SOMA command through SOAPUI


Can anyone help me with SOMA command/message to turn off/on the probe in datapower.

Thanks & Regards, Sreevathsa A


Solution

  • We can use below SOAP message

    <?xml version="1.0"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
     <soapenv:Body>
    
    
    <dp:request xmlns:dp="http://www.datapower.com/schemas/management" domain="hubowner">
     <dp:modify-config>
        <XMLFirewallService name="Test">
            <DebugMode>off</DebugMode>
        </XMLFirewallService>
     </dp:modify-config>
    
    
      </dp:request>
     </soapenv:Body>
    </soapenv:Envelope>