Question
8
Replies
877
Views
Posted: November 14, 2015
Last activity: November 27, 2015
REST Connector , service protect by SSO - How to connect
We are conecting to external system via REST connector, but the external system JSON service url is protect by site minder, so whenever we hit we are redirected to sso login page instead of actual service JSON. Now how to connect to service URL ? Do I need to authenticate first then pass cookie in header? Please advice?
Hi Swami,
You should use proxy server settings. I believe this feature is available since 7.1.8. You need to set the jvm arguments similar to these:
-Dhttp.proxyHost=
<Host name or IP address of HTTP proxy>-Dhttps.proxyHost=<Host name or IP address of HTTP proxy to take https path>
-Dhttps.proxyPort=<HTTPs port>
-Dhttp.nonProxyHosts=<Specify Service Hostnames, for which you want to bypass the requests>
-Dhttp.proxyUser=<Username if basic auth is enabled at proxy>
-Dhttp.proxyPassword=<Password if basic auth is enabled at proxy>