IT Process Automation

  • 1.  Using a SOAP operator with a corporate proxy

    Posted Oct 29, 2012 11:45 AM
    I need to call a web service using the SOAP operator but I must go through a company proxy server, how do I configure the SOAP operator to use a proxy server?

    I can see options on the HTTP operators for configuring the use of a proxy server but these properties do not exist on the SOAP operator.


    Has anyone done this?

    thanks


  • 2.  RE: Using a SOAP operator with a corporate proxy
    Best Answer

    Posted Nov 01, 2012 06:36 AM
    Assuming you run the operator on an agent you can modify the JVM parameters and specify the proxy settings in the c2oagtsvcw.conf file:

    wrapper.java.additional.20=-Dhttp.proxyHost=proxyhostURL
    wrapper.java.additional.21=-Dhttp.proxyPort=proxyPortNumber
    wrapper.java.additional.22=-Dhttp.proxyUser=someUserName
    wrapper.java.additional.23=-Dhttp.proxyPassword=somePassword


    Where in this example 20 is the next available number in the list of additional parameters, you should match it to yours.
    Also, replace Dhttp with Dhttps if applicable.

    I suggest you submit an Idea to add Proxy support for the PAM SOAP Operators.