(01-19-2024, 04:01 PM)staff@ergosoft.it Wrote: is it possible to make the same SOAP call with indy ?
Are you asking how to SEND a SOAP request, or how to RECEIVE a SOAP request?
SOAP is just XML over standard HTTP/S.
- To SEND a SOAP request, you can use TIdHTTP to post any XML string you want.
- To RECEIVE a SOAP request, there is nothing builtin to Indy specifically for that purpose. IIRC, Delphi's WebBroker can be used with SOAP, and Indy can be used with WebBrowser via TIdHTTPWebBrowserBridge. On the other hand, you could simply use TIdHTTPServer to receive HTTP/S requests and process them yourself however you want.