Salute a tutti, che qualcuno mi aiuti per favore ...
Per conto di un cliente devo inviare dei dati ad un server SOAP secondo queste specifiche:

--------------------------------------

L’indirizzo per accedere è il seguente:

http:// xxx.xxx.xxx.xxx/acwsgen/recall.asmx?op=AddSimpRecall

In allegato trova delle informazioni che Le possono essere utili.

Tipologia invio dati:Web service (vedi allegato)

Variabili da utilizzare:

sTel stringa (in)
sSource string (in)

resituisce un intero:

0 = operazione riuscita
1 = operazione fallita



Allegato:

POST /acwsgen/recall.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/AddSimpRecall"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<AddSimpRecall xmlns="http://tempuri.org/">
<sTel>string</sTel>
<sSource>string</sSource>
</AddSimpRecall>
</soap:Body>
</soap:Envelope>

--------------------------------------------------------

Come lo spedisco questo XML ?

Grazie !!!