Webservice call behind the proxy issue

0
Hi, I am trying make webservice call behind the proxy. I configured "Extra JVM paramters" under the project-setting/edit configuration/ ex: -Dhttps.proxyHost=58.2.40.198 -Dhttps.proxyPort=3120 But still i am unable to call service. Please let me where i did the mistake.
asked
1 answers
0

We need to pass proxyHost and port as arguments to the JVM ( Project settings --> Configurations --> server--> Extra JVM params) in modeler.

ex:

-Dhttp.proxyHost=58.2.40.198 -Dhttp.proxyPort=3120 -Dhttps.proxyHost=58.2.40.198 -Dhttps.proxyPort=3120

answered