Bonjour,
J'ai un webservice dont je souhaiterais modifier le message ci dessous dans un filtre TOMCAT.
Comment puis je récupérer le message envoyé à mon web service dans la request de la methode doFilter de mon filtre TOMCAT.
Le message SOAP
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 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pam="http://pam.client.com/"> <soapenv:Header/> <soapenv:Body> <pam:affichageContactClient> <!--Optional:--> <affichagecontactclientinmsg> <!--Optional:--> <numeroPersonne>0000820</numeroPersonne> <!--Optional:--> <entetePersonneId>?</entetePersonneId> <!--Optional:--> <identificationInMsg> <!--Optional:--> <nomUtilisateur>TEST</nomUtilisateur> <!--Optional:--> <prenomUtilisateur>toto</prenomUtilisateur> <!--Optional:--> <abregeUtilisateur>TETO</abregeUtilisateur> <!--Optional:--> <password>?</password> </identificationInMsg> </affichagecontactclientinmsg> </pam:affichageContactClient> </soapenv:Body> </soapenv:Envelope>
Partager