Bonjour,

Je viens de lire plusieurs tutoriels mais je n'arrive pas à envoyer une requête à mon web service.

La requête est la suivante :
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<soapenv:Envelope  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"  xmlns:ws="http://ws.price/">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:priceByCover>
            <!--Optional:-->
            <arg0>
                <!--Optional:-->
 
<subscriber>
                    <!--Optional:-->
                    <socialStatus>
                        <!--Optional:-->
                        <value>SECU</value>
                    </socialStatus>
 
 
 
                    <!--Optional:-->
                    <department>
                        <!--Optional:-->
                        <value>D75</value>
                    </department>
 
 
                    <age>37</age>
 
 
                    <!--Optional:-->
                    <gender>
                        <!--Optional:-->
                        <value>M</value>
                    </gender>
 
 
 
 
                    <year>2012</year>
</subscriber>
 
 
 
 
                <!--Optional:-->
                <jointAdult>
                    <!--Optional:-->
                    <socialStatus>
                        <!--Optional:-->
                        <value>SECU</value>
                    </socialStatus>
                    <!--Optional:-->
                    <department>
                        <!--Optional:-->
                        <value>D75</value>
                    </department>
                    <age>37</age>
                    <!--Optional:-->
                    <gender>
                        <!--Optional:-->
                        <value>F</value>
                    </gender>
                    <year>2012</year>
                </jointAdult>
                <!--Zero or more repetitions:-->
                <children>
                    <!--Optional:-->
                    <socialStatus>
                        <!--Optional:-->
                        <value>SECU</value>
                    </socialStatus>
                    <!--Optional:-->
                    <department>
                        <!--Optional:-->
                        <value>D75</value>
                    </department>
                    <age>13</age>
                    <!--Optional:-->
                    <gender>
                        <!--Optional:-->
                        <value>F</value>
                    </gender>
                    <year>2012</year>
                </children>
                <!--Optional:-->
                <effectDate>06/06/2012</effectDate>
                <coverTable>
                    <!--Zero or more repetitions:-->
                    <entry>
                        <!--Optional:-->
                        <key>HOSPITALISATION</key>
                        <!--Optional:-->
                        <value>100</value>
                    </entry>
                    <entry>
                        <!--Optional:-->
                        <key>OPTIQUE</key>
                        <!--Optional:-->
                        <value>100</value>
                    </entry>
                    <entry>
                        <!--Optional:-->
                        <key>GENERAL</key>
                        <!--Optional:-->
                        <value>100</value>
                    </entry>
                    <entry>
                        <!--Optional:-->
                        <key>DENTAIRE</key>
                        <!--Optional:-->
                        <value>100</value>
                    </entry>
                </coverTable>
            </arg0>
        </ws:priceByCover>
    </soapenv:Body>
</soapenv:Envelope>
Quelqu'un saurait-il m'indiquer comment faire ?

Merci d'avance pour votre aide.