accéder à wsdl sur Tomcat

J'ai un service web et j'ai été déployé sur GlassFish. J'ai consulté son wsdl par http://localhost:10697/APIService/APIServiceService?wsdl.

Maintenant j'ai porté la GUERRE de fichier à un Tomcat 6.0.24 et il est déployé. Cependant, je suis en train d'essayer d'accéder à son wsdl à l'aide http://localhost:8080/APIService/APIServiceService?wsdl mais j'obtiens une erreur 404. J'ai essayé plusieurs combinaisons mais rien ne semble fonctionner.

Comment puis-je accéder au fichier wsdl plz?

Merci et salutations,

Mise à jour: vous êtes Ici: web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

Je ne peux pas trouver sun-jaxws.xml cependant... Merci beaucoup! Ce qui concerne

source d'informationauteur Krt_Malta