RESTV2Request - How can I have it ignore SSL for one specific call via a Midserver?

Jace Benson
Mega Sage

Anyone know of a way to use RESTV2Request via a Mid and have the call ignore SSL issues on the endpoint?  E.g. how curl does it is with a `-k` option.

The integration in question is with infoblox.  It seems their API doesnt do ssl....

Every helper library I've found or post about how to connect includes code to not verify SSL.
- https://github.com/kubernetes-incubator/external-dns/issues/378
- http://virtualize-automate.com/wp/index.php/2016/04/07/invoke-infoblox-rest-api-calls-with-powershell/

 

1 REPLY 1

Jace Benson
Mega Sage

Hi got back to me.

Currently there is two option you can go with:

1) Add property "com.glide.communications.trustmanager_trust_all" which will disable it for the whole instance.

2) You can make call using Mid-Server and disable below property their:

 * Log on MID server

 * Add a parameter "Djsse.enableSNIExtension=false" to file "wrapperoverride.conf"

 * Restart MID server service and test again