Oppure

Loading
18/04/12 17:48
-Meng0-
Salve a tutti, domattina devo eseguire un web test in c#, consiste nel interagire con un oggetto su un server dato e restituire il risultato di una funzione richiesta.
Per vie traverse:k:ho scoperto che la funzione richiesta ha nome "checkStringHash", e il server contiene 2 file xml così strutturati:
1 -
POST *** HTTP/1.1
Host: ***
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "***";

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="w3.org/2001/…; xmlns:xsd="w3.org/2001/…; xmlns:soap="schemas.xmlsoap.org/soap/envelope/…;
<soap:Body>
<checkStringHash xmlns="***">;
<htest>long</htest>
<nome>string</nome>
<cognome>string</cognome>
<matricola>int</matricola>
</checkStringHash>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

2 -
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="w3.org/2001/…; xmlns:xsd="w3.org/2001/…; xmlns:soap="schemas.xmlsoap.org/soap/envelope/…;
<soap:Body>
<checkStringHashResponse xmlns="http:***">
<checkStringHashResult>string</checkStringHashResult>
</checkStringHashResponse>
</soap:Body>
</soap:Envelope>

Qualcuno sa interpretarli e provare ad aiutarmi a capire quale sarà l'effettiva funzione richiesta?
Grazie mille in anticipo;)
aaa