gosty is back :::....Force & Honneur....::: | je viens aussi d'essayer une autre technique, toujours sans succès
Code :
- <?PHP
- $dom = new DOMDocument('1.0', 'UTF-8');
- $dom->formatOutput = TRUE;
- $requete = $dom->createElement('REQUETE');
- $dom->appendChild($requete);
- $DEMANDE_DISPO = $dom->createElement('DEMANDE_DISPO');
- $requete->appendChild($DEMANDE_DISPO);
- $entete = $dom->createElement('ENTETE');
- $DEMANDE_DISPO->appendChild($entete);
- $entete->setAttribute('IDPART', ...);
- ...
- $sendXML = $dom->saveXML();
- $url = "http://91.";
- $ch = curl_init($url);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
- curl_setopt($ch, CURLOPT_TIMEOUT, 30);
- curl_setopt($ch, CURLOPT_POST,1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
- curl_setopt($ch, CURLOPT_POSTFIELDS, $sendXML);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $ret=curl_exec($ch);
- if(!$ret) {echo 'out';}
- curl_close($ch);
- echo $ret;
- ?>
|
cette fois ci je crois que ma requete xml est bonne car elle s'affiche exactement comme le modele de requete xml que je dois emettre. maintenant le pb vient plus de curl j'ai l'impression, j'ai essayé pas mal d'options au niveau des header notamment, y a rien qui marche.
la réponse que je reçois maintenant c'est out, je sais pas alors si c'est le serveur d'en face qui marche pas ou si c'est ma requete qui fait tout foirer.
quelqu'un sait ou ça foire ?
merci d'avance |