Until NAV2013 I think I’ve used ANSI/ASCII conversion in pretty much every project, and Unicode has been a no-no. From NAV2013 we can use .Net to take care of conversions. In this example I support DOS-PC8, Codepage 1252 and UTF-8 when importing a textfile. The format is specified using an option field in a setup […]
Tag Archives: .Net
FTP upload using .Net
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 […]