Message d'erreur : Erreur lors de la génération du document XML.
InnerException : Le type comm.fiches.SalesLine n'était pas attendu. Utilisez l'attribut XmlInclude ou SoapInclude pour spécifier les types qui ne sont pas connus statiquement.
------------------------------------------------------------------------
Infos du service web :
Le texte suivant est un exemple de demande et de réponse SOAP 1.2. Les espaces réservés affichés doivent être remplacés par des valeurs réelles.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
POST /NAVWebservicesAjax/Service.asmx HTTP/1.1
Host: 213.144.195.166
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SetSQLLot xmlns="http://tempuri.org/">
<ListeCommandes>
<anyType />
<anyType />
</ListeCommandes>
</SetSQLLot>
</soap12:Body>
</soap12:Envelope> |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13
|
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SetSQLLotResponse xmlns="http://tempuri.org/">
<SetSQLLotResult>int</SetSQLLotResult>
</SetSQLLotResponse>
</soap12:Body>
</soap12:Envelope> |