- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 04:20 PM
How can I get the user's current URL from the server script, instead of having to get it via client script and using c.server.get to send it to the server? Is it ever at all possible to do this from the server?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2018 12:42 PM
I was able to achieve what I wanted from using the following:
gs.getProperty("glide.servlet.uri") + gs.action.getGlideURI();
Thanks for the help though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 08:47 PM
I'm not sure if this is the best way to accomplish it, but you could possibly grab what you need from the Transaction Logs:
System Logs -> Client Transactions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2018 12:42 PM
I was able to achieve what I wanted from using the following:
gs.getProperty("glide.servlet.uri") + gs.action.getGlideURI();
Thanks for the help though.