Do you create files in NAV that you upload to an FTP site? Did you know that you can control the FTP upload from C/AL code using .Net? You can use the code below as a starting point to create your own solution. This way you don’t have to install any 3rd party FTP-software and […]
Base64-encoded credentials
Sometimes when you are connecting to a web service you need to authenticate using Base64 encoded credentials. This has became a lot easier now that we can use .Net Here’s some sample code that connects to a web service with “username:password” but encoded as Base64. This code use a method to get a response which […]