Board index » delphi » How to send data from ISAPI to exe application and get back result
Tomas
![]() Delphi Developer |
How to send data from ISAPI to exe application and get back result2008-03-04 03:09:07 AM delphi179 Hi, I have ISAPI and one Action let's say Upload. I need to send Request.Content data to my exe(application) for uploaded data manipulation and send result back from exe to ISAPI and display that data for user. What is the best way to comunicate between application? I would like to note that Request.Content will be prety large about 10mb, it will contain form data and file. example procedure Twm.wmUpload(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); begin SendToExe(Request.content) //waiting for response from exe Response.content(GetDataFromExe) end; Regards, Tomas |