The task is to import every file that is dropped into a specific folder on my local drive into NAV. The solution is a windows service programmed in Visual Studio 2008 VB.NET. The first step is to create a web … Continue reading →
My earlier post on File Download used the responsestream property of WinHTTP. On my latest project I needed to use Windows Authentication on my website and found out that I needed to create the WinHTTP automation on client level to … Continue reading →
In Dynamic NAV it is possible to use the Automation “‘Microsoft XML, v6.0′.XMLHTTP” to download files. The code would be IF ISCLEAR(WinHTTP) THEN CREATE(WinHTTP,TRUE,FALSE); WinHTTP.open('GET',URL,FALSE); WinHTTP.send(''); IF WinHTTP.status <> 200 THEN...