SOMA Interface is one of the good way to interact with DataPower specially when it comes to admin related activities.
Here is the Simple Java Code to work with SOMA.
Code Sends Request to DataPower over HTTPS. It opens a connection, send the SOMA request & print the response received from DataPower.
Note: It creates *insecure" HTTPS connection to DataPower.
Sample SOMA Request
<soapenv:Envelope xmlns:man="http://www.datapower.com/schemas/management" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dp="http://www.datapower.com/schemas/management">
<soapenv:Header/>
<soapenv:Body>
<man:request domain="Developer04">
<man:get-filestore location="local:"/>
</man:request>
</soapenv:Body>
</soapenv:Envelope>
Popular Posts
-
DataPower has provided easy way to allow developers to create log entries or capture information related to a transaction. If you are famili...
-
To work with JSON type messages, DataPower first converts it to JSONX, a proprietary XML based format to represent JSON message, does transf...
-
I had a requirement where I need to create and store as many context variable depending on the number of elements received with incoming re...
-
SOMA Interface is one of the good way to interact with DataPower specially when it comes to admin related activities. Here is the Simple ...
-
Yes, it's possible to do TCP Connection Test without login into DataPower box. In general, DataPower has provided TCP Connection test...
No comments:
Post a Comment