- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2020 05:12 AM
Hi,
In ServiceNow integration, how can I skip the SSL verification on RESTMessageV2?
var rm = new sn_ws.RESTMessageV2();
rm.setHttpMethod('post');
rm.setBasicAuth(userName,password);
rm.setEndpoint(url);
var response = rm.execute();
anything I missed to set in the rest message attribute?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2020 10:57 PM
Hi Siva,
You can set the following property to false, this will cause the HTTPClient to not make the hostname verification against the ssl certificate provided.
"com.glide.communications.httpclient.verify_hostname" to false
Hope it will solve your issue.
Regards
Omkar Mone
2020 Community MVP

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2020 08:07 PM
Hello,
Type sys_properties.LIST in the application navigator and search for *com.glide.communications.httpclient.verify_hostname in the Name column of that table.
Let me know if that helps.
Regards
Omkar Mone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2023 09:51 AM
It's accessible in
sys_properties_list.do
Hope this helps! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2020 09:57 PM
Thanks Omkar, it works.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2020 10:09 PM
You're welcome 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2021 07:56 AM
when I add "com.glide.communications.httpclient.verify_hostname" property I get duplication error.