Re:MIME encoding XML and posting to a HTTP server??
You'l need a server side "script" (ASP,JSP servlet, Perl script etc etc etc) to
process the file. To do this I'd look at using SOAP or XML-RPC. These define
standard ways of doing the what you want. The first is a proposed standard
from microsoft and is suffering a bit from "feature creep" as the
standardisation progresses. The second is easier but less supported by
thirdparty tools (but should not be that difficult to do yourself).
Search google for either and you'll find plenty of information
Mike H
Quote
Matt wrote:
> Could someone explain how to MIME encode a string of XML and post it to a
> server via HTTP or HTTPS? What properties do I need to set in the TIdHTTP?
> I did not know if I just change the Content headers in the TIdHTTP, but
> since encoding involved I guessed it would be more than that.
> Thanks.