Bonjour,

J'utilise Axis2 pour déployer des webservices et j'ai tenté de suivre l'installation standard selon la page consacrée (http://ws.apache.org/axis2/1_5/quickstartguide.html) et je butte sur cette partie: (J'ai récupéré la version WAR, déployée avec succès sur un tomcat 6)

In most cases, we're also going to need a WSDL file for our service. Axis2's Java2WSDL can be used to bootstrap a WSDL. To generate a WSDL file from a Java class, perform the following steps:

1.Create and compile the Java class.
(Windows)
%AXIS2_HOME%\bin\java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl

(Linux)
$AXIS2_HOME/bin/java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl
2.Generate the WSDL using the command:
Once you've generated the WSDL file, you can make the changes you need. For example, you might add custom faults or change the name of the generated elements. For example, this StockQuoteService.wsdl is in AXIS2_HOME/samples/quickstartadb/resources/META-INF folder, which we'll be using throughout the rest of this guide, replaces the generic parameters created by the generation process.
L'execution de la commande indiquée, sous windows me renvoie que java2wsdl n'est pas une commande connue et effectivement, le répertoire axis2\lib n'existe pas: il ne semble pas avoir été généré au premier lancement du war...

Savez vous ce que je dois faire?

Merci d'avance,
LDPDC