Web service connector with proxy definition

Which IIQ version are you inquiring about?

8.3

Share all details about your problem, including any error messages you may have received.

I have an application I would like to connect to IIQ with a web service connector. There’s a proxy between IIQ and this application. The proxy is a simple proxy that gets HTTP requests and moves them forward. The proxy needs to receive the destination address and port to forward the request to.

When I look at the web service connector, I don’t see a place to insert a proxy URL, only the application base URL.

Does IIQ support such a use case?

Hi @liza_s <

Please refer.
you can add the proxy URL to app xml from debug

Hi @liza_s

I believe, Webservice Connector supports an Application layer Proxy which when configured for a specific application to ensure that the traffic is routed through the proxy server.

Add following lines in Application XML based on the requirement.

HTTPS Proxy

<entry key=“https.proxyHost” value=“IP of Proxy Server”/>

<entry key=“https.proxyPort” value=“Port on which Proxy is configured”/>

HTTP Proxy:

<entry key=“http.proxyHost” value=“IP of proxy Server”/>
<entry key=“http.proxyPort” value=“Port on which proxy Server is configured.”/>

If proxy server requires authentication:

HTTPS proxy Authetication:

<entry key=“https.proxyUser” value=“Username”/>
<entry key=“https.proxyPassword” value=“password”/>

HTTP proxy Authetication:

<entry key=“http.proxyUser” value=“Username”/>
<entry key=“http.proxyPassword” value=“password”/>

Regards

Ankush