Hi Anupama,
There is no direct probe configuration support to use Proxy. However you may try JVM Arguments to define proxy.
-DproxySet=true -Dhttp.proxyHost=PROXY_IP -Dhttp.proxyPort=PROXY_PORT -Dhttps.proxyHost=PROXY_IP -Dhttps.proxyPort=PROXY_PORT
Open Raw Configure of messagegtw probe and update startup/opt/java_opts parameter with above string value at the end of the configuration (you need to replace PROXY_IP & PROXY_PORT with actual proxy IP address and port).
Config Sample:
<startup>
<opt>
java_opts = -server -XX:ErrorFile=./hs_err_pid.log -DproxySet=true -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8080 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=8080
java_mem_max = -Xmx1024m
java_mem_init = -Xms64m
</opt>
</startup>

Rgds,
Rajesh B
Original Message:
Sent: Mar 13, 2025 02:53 AM
From: Anupama Purayannur
Subject: Proxy server for messagegtw probe
Hi,
The messagegtw probe need to call API which requires internet access. The internet needs to be accessed via proxy server. Is it possible to define proxy settings in messagegtw probe? If so, where?
Thanks
Anu