Click here to Skip to main content
15,888,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralFriend Function Pin
Abuamr7-Dec-04 19:54
Abuamr7-Dec-04 19:54 
GeneralRe: Friend Function Pin
John R. Shaw7-Dec-04 20:20
John R. Shaw7-Dec-04 20:20 
Generala prb. related to DirectShow using VC++ Pin
mirhamzah7-Dec-04 19:34
mirhamzah7-Dec-04 19:34 
GeneralRe: a prb. related to DirectShow using VC++ Pin
ssing7-Dec-04 20:55
ssing7-Dec-04 20:55 
GeneralRe: a prb. related to DirectShow using VC++ Pin
ssing7-Dec-04 20:59
ssing7-Dec-04 20:59 
Generalmfc Pin
sreeja777-Dec-04 19:15
sreeja777-Dec-04 19:15 
GeneralRe: mfc Pin
namaskaaram7-Dec-04 21:25
namaskaaram7-Dec-04 21:25 
GeneralDownloading a file with https URL Pin
ssing7-Dec-04 19:08
ssing7-Dec-04 19:08 
I want to download a file with an https url which requires authentication. Obviously doing this with an internet browser works but I have to supply the username and password in a popup authentication dialog. I am able to download files using plain old http without authentication by using the following API's:

HINTERNET h=InternetOpen("Session Name", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);

HINTERNET h2=InternetOpenUrl(h, "http://....", NULL, 0, 0, NULL);

char buf[2048];
DWORD dwRead;

InternetRead(h2, buf, 2048, &dwRead);

I tried using InternetOpen() then InternetConnect() because connect too username/password parameters but I guess I must be missing something after that because the InternetRead doesn't work. I think I need to send and Http request but I'm not sure what or how.

GeneralRe: Downloading a file with https URL Pin
ThatsAlok7-Dec-04 19:58
ThatsAlok7-Dec-04 19:58 
GeneralRe: Downloading a file with https URL Pin
ssing7-Dec-04 21:02
ssing7-Dec-04 21:02 
GeneralTAPI Pin
John R. Shaw7-Dec-04 16:51
John R. Shaw7-Dec-04 16:51 
GeneralRe: TAPI Pin
ThatsAlok7-Dec-04 17:13
ThatsAlok7-Dec-04 17:13 
GeneralRe: TAPI Pin
John R. Shaw7-Dec-04 18:00
John R. Shaw7-Dec-04 18:00 
GeneralRe: TAPI Pin
ThatsAlok7-Dec-04 22:15
ThatsAlok7-Dec-04 22:15 
GeneralLoadLibrary fails, getlasterror = 6. DLL Loaded made in VC++ .net Pin
SteQve7-Dec-04 16:50
SteQve7-Dec-04 16:50 
GeneralRe: LoadLibrary fails, getlasterror = 6. DLL Loaded made in VC++ .net Pin
Steve S7-Dec-04 23:35
Steve S7-Dec-04 23:35 
GeneralRe: LoadLibrary fails, getlasterror = 6. DLL Loaded made in VC++ .net Pin
SteQve8-Dec-04 0:04
SteQve8-Dec-04 0:04 
GeneralRe: LoadLibrary fails, getlasterror = 6. DLL Loaded made in VC++ .net Pin
SteQve8-Dec-04 0:32
SteQve8-Dec-04 0:32 
GeneralCommon handler for all dialog controls Pin
Raghunandan S7-Dec-04 16:39
Raghunandan S7-Dec-04 16:39 
GeneralRe: Common handler for all dialog controls Pin
John R. Shaw7-Dec-04 17:23
John R. Shaw7-Dec-04 17:23 
Generalmobile games Pin
bigdeeoo77-Dec-04 16:17
bigdeeoo77-Dec-04 16:17 
GeneralRe: mobile games Pin
ThatsAlok7-Dec-04 17:11
ThatsAlok7-Dec-04 17:11 
GeneralRe: mobile games Pin
parths7-Dec-04 18:41
parths7-Dec-04 18:41 
Generalwin32 console app and threading issues Pin
tung salem7-Dec-04 16:00
tung salem7-Dec-04 16:00 
GeneralRe: win32 console app and threading issues Pin
John R. Shaw7-Dec-04 18:49
John R. Shaw7-Dec-04 18:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.