I'm trying to find anywhere that I can access a URLEncoder function. I know this is a java class, but can't find anywhere in Mendix that it exists.
The problem is that I have a public REST service I'm calling (GET) that needs a string passed, the string must be URL encoded. the biggest problem is spaces, but also question marks and other characters. I'm getting around the issue by using replaceAll function, but that's just a hack.