hi leutz ich will grad eine konsolen-application schreiben in der POST ueber
indy verschickt wird^^
was aber mein problem ist ich bekomme idhttp unter der konsolen anwendung nichtmal zum laufen 0_o
ich hab mal mit versucht ein wenig rumzuspielen, aber funkt nicht und sie sufu hat dazu nix
Delphi-Quellcode:
uses
IDhttp
in '
..\..\..\..\Program Files\Delphi7SE\Projects\idhttp.pas',
SysUtils,
classes;
var
Http1: TIdHTTP;
Strings: TStringList;
begin
Http1 := TIdHTTP.Create (
nil);
Strings := TStringList.Create;
try
Strings.Add('
mode=write');
Strings.Add('
txt=Hallo ihr da:)');
try
begin
Http1.Post('
http://xxx/send.php', Strings);
end
except
on E:
Exception do
end;
finally
Strings.Free;
Http1.Free;
end;
das is mein jetziger source,...laeuft ohne probleme nur POST kommt nicht an 0_o
habt ihr vllcht ein plan wie ich dann zb post ueber die konsole versenden kann?^^
waere fett wenn jemand davon plan hat^^
da o0o