Yes, it's possible to do TCP Connection Test without login into DataPower box.
In general, DataPower has provided TCP Connection test UI feature on it's WebUI. After login to DataPower box, click on "Troubleshooting" on control panel and you will get option to try TCP Connection Test to any IP and Port combination from DataPower.
But it's not a very viable solution specially when you have multiple boxes in production. You need some easy way out test TCP Connection without login to DataPower box.
SOMA Interface can help us here. You can write a SOMA script to request DataPower to confirm TCP connectivity.
This is the Sample of SOMA Script..
<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="DOMAINDEV"> <!-- Replace domain name -->
<man:do-action>
<TCPConnectionTest>
<RemoteHost>xxx.xxx.xxx.xxx</RemoteHost>
<RemotePort>8081</RemotePort>
</TCPConnectionTest>
</man:do-action>
</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...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment