![]() |
SOAP and Indy - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Open Source (https://www.atozed.com/forums/forum-19.html) +--- Forum: Indy (https://www.atozed.com/forums/forum-9.html) +--- Thread: SOAP and Indy (/thread-3801.html) |
SOAP and Indy - staff@ergosoft.it - 01-19-2024 Hi, I use for test SOAPUI with this example Code: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prot="Protocollo.wsdl"> on site: https://testsegreteria.halleycih.com/WSURBIX/PI0/PIWSMAIN.HBL and works well... is it possible to make the same SOAP call with indy ? thanks Alessandro Romano RE: SOAP and Indy - rlebeau - 01-19-2024 (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.
RE: SOAP and Indy - staff@ergosoft.it - 01-19-2024 Thanks for the reply ! I need to send a soap request to server soap... Do you have any practical examples... I need to start trying to post the example above ![]() thanks RE: SOAP and Indy - Robert Gilland - 01-19-2024 https://wiki.freepascal.org/Web_Service_Toolkit builds and sends Soap packets using Indy RE: SOAP and Indy - staff@ergosoft.it - 01-20-2024 (01-19-2024, 10:58 PM)Robert Gilland Wrote: https://wiki.freepascal.org/Web_Service_Toolkit builds and sends Soap packets using Indy Hi Robert, thanks for the tips ! I had some problems using wsdl directly from delphi. for this particular connection. instead the direct call with XML seems to work well (tested with SOAPUI)... This is why I was asking if there is any example of a SOAP call with XML passing all with indy. thanks RE: SOAP and Indy - rlebeau - 01-20-2024 (01-20-2024, 09:28 AM)staff@ergosoft.it Wrote: This is why I was asking if there is any example of a SOAP call with XML passing Try something like this: Code: var RE: SOAP and Indy - staff@ergosoft.it - 01-22-2024 Thank you RLebeau. much appreciated ! RE: SOAP and Indy - staff@ergosoft.it - 02-05-2024 Hi Rlebeau, my application consists of 2 parts: a normal vcl application program and in this case the above code works correctly (!) and a IntrawebApplication: in this case the IW application gives me this error: "Unknown Protocol" (the same code) then vcl application work ok IW application error "Unknown Protocol" RE: SOAP and Indy - staff@ergosoft.it - 02-05-2024 Fixed...the URL address was incorrect. Thank you |