- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2014 12:30 PM
Hello All,
I'm using a reverse proxy to display an internal URL to my customers, but the URI_REF variable in the OOB notifications references the standard company.service-now.com domain. Is there a way to modify that? I'm sure it's pulling from a property somewhere, but I don't know which or what the ramifications of changing it might be.
Thanks in advance for reading my post. I hope you can help 🙂
-Dave
In way of trade, we're using SN to host a software catalog which allows customers to have software automatically installed on their machines (SCCM) or to download a self install package. If you've got any questions about how we're doing it, I'd be glad to answer them.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2014 07:50 AM
You just keep using URI_REF as usual and the value returned would be the value of the property instead of the instance's URL.
But if you need to get the value, you can use gs.getProperty("glide.email.override.url")
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2014 12:02 PM
Try adding this property:
glide.servlet.uri
Set the value to your new url. Not positive if it will work but saw some information that said the property is meant to be used with reverse proxies.
Navigating by URL - ServiceNow Wiki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2014 11:01 AM
I was just curious if Chris' suggestion helped you out? Otherwise, a brute force way of doing it would be to create a Business Rule on the Email table that replaces the URL strings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2014 05:51 AM
looks like our professional service guys changed/added a property called glide.email.override.url type=string, value=https://yoururl/nav_to.do and private=true
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2014 06:59 AM
OK thanks for the update.