Ver Mensaje Individual
  #1  
Antiguo 07-08-2008
Avatar de ZayDun
ZayDun ZayDun is offline
Miembro
 
Registrado: mar 2007
Posts: 129
Reputación: 18
ZayDun Va por buen camino
Hacer POST con el componente IdHTTP

Hola, tengo delphi 6 y estoy trabajando con el componente IdHTTP, el problema es que hasta ahora no he tenido problemas utilizandolo de esta manera.

Código Delphi [-]
Var
Destino: TFileStream;
Begin
Destino:=TFileStream.Create('C:\', fmCreate);
try
IdHTTP1.Get(Url.Text,destino);

y nunca he tenido ningun problema, pero ahora necesito hacer POST y pense que seria lo mismo pero no... en cuanto cambio el GET por un POST o sigo un ejemplo que si mal no recuerdo dijo DEC, me sale error, un error que dice asi..

There is no overloaded version of Post that can be called with these arguments

¿alguna sugerencia?
Responder Con Cita