20 lines
498 B
PHTML
20 lines
498 B
PHTML
<h2>SOAP</h2>
|
|
|
|
<p>Requete</p>
|
|
<textarea rows="10" cols="100" name="soap-requete">
|
|
<?php print_r($this->soap['requete']);?>
|
|
</textarea>
|
|
<p>Réponse</p>
|
|
<textarea rows="10" cols="100" name="soap-reponse">
|
|
<?php print_r($this->soap['reponse']);?>
|
|
</textarea>
|
|
|
|
<h2>XML</h2>
|
|
<p>Requete</p>
|
|
<textarea rows="10" cols="100" name="xml-requete">
|
|
<?php echo $this->xml['requete'];?>
|
|
</textarea>
|
|
<p>Réponse</p>
|
|
<textarea rows="10" cols="100" name="xml-reponse">
|
|
<?php echo $this->xml['reponse'];?>
|
|
</textarea>
|