voici mes fichiers:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
 
<?php
$requestParams = array(
    'nd' => '021'
);
 
$client = new SoapClient('http://serv:8088/mockClientSearchServiceServiceSoapBinding?WSDL');
$response = $client->searchClientNd($requestParams);
 
echo ($response);
 
 
?>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.webservice.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:searchClientNd>
         <!--Optional:-->
         <nd></nd>
      </ser:searchClientNd>
   </soapenv:Body>
</soapenv:Envelope>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 
 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.webservice.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:searchClientNdResponse>
         <!--Optional:-->
         <clients>
            <!--Zero or more repetitions:-->
            <client>
               <!--Optional:-->
               <adr_inst>?</adr_inst>
               <!--Optional:-->
               <categorie>?</categorie>
               <!--Optional:-->
               <date_creation>?</date_creation>
               <!--Optional:-->
               <derangement_cours>?</derangement_cours>
               <!--Optional:-->
               <nd>?</nd>
               <!--Optional:-->
               <nomPrenom>?</nomPrenom>
               <!--Optional:-->
               <produit>?</produit>
               <!--Optional:-->
               <profession>?</profession>
               <!--Optional:-->
               <qual_abo>?</qual_abo>
               <!--Optional:-->
               <resitriction>?</resitriction>
               <!--Optional:-->
               <nCli>?</nCli>
               <!--Optional:-->
               <nDos>?</nDos>
            </client>
         </clients>
      </ser:searchClientNdResponse>
   </soapenv:Body>
</soapenv:Envelope>
voici mon résultat

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
stdClass Object (
 
 [clients] => stdClass Object (
 
 [client] => stdClass Object (
 [adr_inst] => 5555555555555 
 [categorie] => ? 
 [date_creation] => ? 
 [derangement_cours] => ? 
 [nd] => ? 
 [nomPrenom] => ? 
 [produit] => ? 
 [profession] => ? 
 [qual_abo] => ? 
 [resitriction] => ? 
 [nCli] => ? 
 [nDos] => ? 
 
 ) 
 
 ) 
 
)

comment je peux lire ce résultat