Has anyone used this?  Its a nice little component that lets you do an HTTP
post of any streamable content (but primarily meant for XML documents).

With Delphi 3.0, im getting a exception on the NT boxes at work on the
"open" method, yet it works fine on my Win98 box at home.  Im having no
problems with VB.

i.e.

var
  r : IXMLHttpRequest;
begin
  r := CoXMLHttpRequest.create;
  r.open ('POST', 'http://localhost/msxml/test.asp', false, 0, 0);
  r.send ('test');

  memo1.lines.add (r.responseText);
end;

I realise the error is probably not specifically related to IXMLHttpRequest
(why does VB work alright?), but does anyone know what I might me doing
wrong in Delphi to get these errors?

(Please help me find an answer so I dont have to use VB...)

Thanks,

Wilfred.
---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to