Inspired by the question What’s the simplest way to call Http GET url using Delphi? I really would like to see a sample of how to use POST. Preferably to receive XML from the call.
Added: What about including an image or other file in the post data?
|
Inspired by the question What’s the simplest way to call Http GET url using Delphi? I really would like to see a sample of how to use POST. Preferably to receive XML from the call. Added: What about including an image or other file in the post data? |
||||
|
|
|
Using Indy. Put your parameters in a StringList (name=value) and simply call Post with the URL and StringList.
|
||||
|
|
|
Here's an example of using Indy to Post a JPEG to a webserver running Gallery I've got more examples of this sort of stuff (I use them in a screensaver I wrote in Delphi for the Gallery project available here, or more info on the Gallery website here). The important bit I suppose is that the JPEG gets passed in as a stream.
end; |
||||
|
|
|
Again, Synapse TCP/IP library to the rescue. Use the HTTPSEND routine HTTPPostURL.
Your URL would be the resource to post too, the URLDATA would be the form data, and your XML results would come back as a stream in DATA. |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.