Hello everyone ;
How does my application link to the default web browser assignment ?
let me explain :
For a website https://www.exampleSiteWeb.com
Public resource> no login/pwd to access > https://www.exampleSiteWeb.com/ressource.txt
But for Private resource> connection with a login/pwd for the same file on the same website > can not be downloaded by the application and can be downloaded from the web browser
And so how related the web cession opened to my application (The default web browser is open)
A big thank you to you.
How does my application link to the default web browser assignment ?
let me explain :
For a website https://www.exampleSiteWeb.com
Public resource> no login/pwd to access > https://www.exampleSiteWeb.com/ressource.txt
Code:
URLn = "https://www.exempleSiteWeb.com/ressource.txt" SMyDocumentsLocation = Shell.GetFolder (SHF_MYDOCUMENTS); T00 = {} T00 ["UserName"] = "MyWindowsUserName" t00 ["Password"] = "MyWindowsPwd" HTTP.DownloadSecure (urlN, sMyDocumentsLocation .. "\\ RecupFile \\ resource.txt", MODE_BINARY, 20, 443, t00, nil, nil); -- Download with success
And so how related the web cession opened to my application (The default web browser is open)
A big thank you to you.
Comment