Bonjour a tous,

J'ai un soucis avec le wsdl généré. je deploie une application avec le contexte suivant :

http://localhost:8080/test-axis/

Quand je tape l'adresse suivante :

http://localhost:8080/test-axis/serv...okService?wsdl

J'obtient notement le bout de wsdl suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
<wsdl:service name="BookService">
<wsdl:port binding="axis2:BookServiceSOAP11Binding" name="BookServiceSOAP11port0">
<soap:address location="http://localhost:8080/axis2/services/BookService"/>
</wsdl:port>
<wsdl:port binding="axis2:BookServiceSOAP12Binding" name="BookServiceSOAP12port0">
<soap12:address location="http://localhost:8080/axis2/services/BookService"/>
</wsdl:port>
<wsdl:port binding="axis2:BookServiceHttpBinding" name="BookServiceHttpport0">
<http:address location="http://localhost:8080/axis2/rest/BookService"/>
</wsdl:port>
</wsdl:service>
Ma question est donc d'où vient ce contexte "axis2" dans mes adresses SOAP au lieu de "test-axis" ?

Merci d'avance.