How can I decode an URL?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 12:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 02:05 AM
Can you provide an example so we can understand what the exact requirement is?
Regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 03:18 AM
Hi Upasana,
I believe this is a duplicate post. If not, apologies. Go to https://developer.service-now.com, click Developers and use the search box to look for GlideURI
You will find methods to easily get the URI parameters from a sever side script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 03:24 AM
Hi Chuck,
We are passing the values of "Comments" field in an order guide to a script include via catalog client script. We are able to retrieve the comments value. But we need to decode the Comments value. Previously we used ->
var jURLdecode = new Packages.java.net.URLDecoder();
var decodedCmts = jURLdecode.decode(cmts);
Now, since we are not able to call Java package, I am not able to find the correct syntax to decode comments.