私はWebサービスを持っていて、それをGlassFishにデプロイしていました。 http:// localhost:10697/APIService/APIServiceService?wsdl を介してwsdlにアクセスしました。
ここで、WARファイルをTomcat 6.0.24に移植し、デプロイしました。ただし、 http:// localhost:8080/APIService/APIServiceService?wsdl を使用してwsdlにアクセスしようとしていますが、404エラーが発生します。いろいろ組み合わせてみましたが、うまくいかないようです。
Wsdlファイルplzにアクセスするにはどうすればよいですか?
ありがとう、よろしく、
更新:ここにあります: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>
Sun-jaxws.xml
が見つかりませんが...どうもありがとうございました!よろしく
WSDLにアクセスする方法は、実際にはコンテナ固有ではなく、WSスタック固有です。 GlassFishのWSスタックはMetro(Metro = JAX-WS RI + WSIT)です。 MetroまたはJAX-WSRIをTomcatにインストール/デプロイしましたか?手順については、 Tomcat 6.xでのMetro または Tomcat 6.xでのJAX-WSサンプルの実行 (JAX-WS RIで十分な場合があります)を参照してください。
更新:web.xml
でWSServlet
を宣言する必要があります( メトロエンドポイントのデプロイ を参照) )::
<?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">
<listener>
<listener-class>
com.Sun.xml.ws.transport.http.servlet.WSServletContextListener
</listener-class>
</listener>
<servlet>
<servlet-name>WebServicePort</servlet-name>
<servlet-class>
com.Sun.xml.ws.transport.http.servlet.WSServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>WebServicePort</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
</web-app>
次に、Sun-jaxws.xml
(これもWEB-INFにパッケージ化されています)で、サービスエンドポイントインターフェイス(SEI)を宣言します。
<?xml version="1.0" encoding="UTF-8"?>
<endpoints xmlns="http://Java.Sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">
<endpoint
name="MyHello"
implementation="hello.HelloImpl"
url-pattern="/hello"
/>
</endpoints>
そして、次の場所でWSDLにアクセスします。
http://localhost:8080/<mycontext>/services/hello?wsdl
A B C D