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@winehq.org ReportedBy: ocean04@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;
http://bugs.winehq.org/show_bug.cgi?id=27864
ocean04@suomi24.fi changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, source URL| |http://netikka.net/dev/winh | |ttp5.exe
http://bugs.winehq.org/show_bug.cgi?id=27864
Hans Leidekker hans@meelstraat.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED
--- Comment #1 from Hans Leidekker hans@meelstraat.net 2011-07-25 13:50:18 CDT --- Fixed by b218ed1a690a3553c9fc64b4ab2a7076371744a8.
http://bugs.winehq.org/show_bug.cgi?id=27864
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #2 from Alexandre Julliard julliard@winehq.org 2011-08-05 12:38:58 CDT --- Closing bugs fixed in 1.3.26.