This component allows you to easily convert any publicly accessible file URL into either:
Base64 string .
Binary data.
It supports HTTP and HTTPS URLs and works with images, PDFs, and other file types.
🔹 Convert URL → Base64
🔹 Convert URL → Binary
🔹 Simple API-style server actions for easy integration
🔹 Built-in error handling for invalid or unreachable URLs
Download and install the OML from Forge.
Publish it to your OutSystems environment using Service Studio.
The following Server Actions will be available in your logic:
UrlToBase64
UrlToBinary
Requires internet access from the server to fetch files.
Works only with public URLs (no authentication support yet).
We have Binary to base 64 and Base 64 to binary already available in OS but for converting The File's URL to Base 64 is not available. So, use this component to fulfil that.
This OutSystems Forge component converts a file's URL to a Base64 string. It fetches the file, processes it, and returns the Base64 representation.
Here we uses C# to achieve this. All you need to do is just taking our action as dependency and use it in your application. Please use try now check how it's working.