Bonjour Tout le monde,

Comment faire pour interroger un service sous delphi 7

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:yous="http://www.xx.com" xmlns:aut="http://xxx.xxx.com/">
   <soapenv:Header>
      <username>USERNAME</username>
      <password>PASSWORD</password>
      <apikey>APIKEY</apikey>
   </soapenv:Header>
   <soapenv:Body>
      <yous:connect/>
   </soapenv:Body>
</soapenv:Envelope>

pour obtenir le message suivant
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:connectResponse xmlns:ns2="http://www.xxxx.com">
         <return>true</return>
      </ns2:connectResponse>
   </S:Body>
</S:Envelope>


Cordialement,