[Bug 27864] New: Implement winhttp SetCredentials
http://bugs.winehq.org/show_bug.cgi?id=27864 Summary: Implement winhttp SetCredentials Product: Wine Version: 1.3.24 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: winhttp AssignedTo: wine-bugs(a)winehq.org ReportedBy: ocean04(a)suomi24.fi Personal app currently hits bug 26586 I can change it to use use winhttp, but face same thing here. Sample: http://netikka.net/dev/winhttp5.exe Click "download" -> message "success" if worked. procedure TForm1.Button1Click(Sender: TObject); var fhttp: variant; begin fhttp:=createoleobject('WinHttp.WinHttpRequest.5.1'); fhttp.open('GET', edit1.text, true); fhttp.SetCredentials(edit2.text, edit3.text, 0); fhttp.send(); if Not FHttp.WaitForResponse(60) then begin FHttp.Abort; exit; end; memo1.text:=fhttp.responsetext; if ansipos('congratulation!', ansilowercase(memo1.text))>0 then showmessage('SUCCESS!') else showmessage('FAILED!'); fhttp:=unassigned; end; -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27864 ocean04(a)suomi24.fi changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, source URL| |http://netikka.net/dev/winh | |ttp5.exe -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27864 Hans Leidekker <hans(a)meelstraat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #1 from Hans Leidekker <hans(a)meelstraat.net> 2011-07-25 13:50:18 CDT --- Fixed by b218ed1a690a3553c9fc64b4ab2a7076371744a8. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27864 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #2 from Alexandre Julliard <julliard(a)winehq.org> 2011-08-05 12:38:58 CDT --- Closing bugs fixed in 1.3.26. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org