2012-02-15 6 views
2

私はSpring Webアプリケーションを設定する初心者です。私はこれを遠くに持っていましたが、今は自分が立ち往生しています。Spring Webサービスの設定時にエンドポイントマッピングが見つかりません

私は次のエラーを取得する:

WARNING: No endpoint mapping found for [SaajSoapMessage {http://mycompany.com/weather/schemas}GetCities] 

主な問題は、私はデバッグ情報を探すためのアイデアが不足しているということです。私は見たほど多くのエラーを修正しましたが、今はログで何か間違ったものを見つけることさえできません。だから私は必死になっている。

この私のweb.xmlが

<web-app> 
    <display-name>Weather report webservice</display-name> 

    <servlet> 
     <servlet-name>spring-ws</servlet-name> 
     <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class> 
     <load-on-startup>1</load-on-startup> 
     <init-param> 
      <param-name>contextConfigLocation</param-name> 
      <param-value>/WEB-INF/spring-ws-servlet.xml</param-value> 
     </init-param> 
     <init-param> 
      <param-name>transformWsdlLocations</param-name> 
      <param-value>true</param-value> 
     </init-param> 
    </servlet> 

    <servlet-mapping> 
     <servlet-name>spring-ws</servlet-name> 
     <url-pattern>/weatherws</url-pattern> 
    </servlet-mapping> 
</web-app> 

これが何であるかを私の春-WS-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:sws="http://www.springframework.org/schema/web-services" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 

    <context:component-scan base-package="path.to.weather"/> 

    <sws:annotation-driven/> 

</beans> 

これは私のエンドポイントは次のようになります。

@Endpoint 
public class WeatherEndpoint { 

    private static final String NAMESPACE_URI = "http://mycompany.com/weather/schema"; 

    private WeatherReportManager manager; 

    @Autowired 
    public WeatherEndpoint(WeatherReportManager manager) throws JDOMException { 
     this.manager = manager; 
    } 

    @PayloadRoot(namespace = NAMESPACE_URI, localPart = "GetCities") 
    @ResponsePayload 
    public Element getCities() { 
     Element toReturn = null; 

     for(City city : manager.getCities()) { 
      //To some stuff 
     } 

     return toReturn; 
    } 
} 

これを私が今見ているようにcatalina.logです。私は、logging.propertiesを編集してTomcatにDEBUGメッセージを出力させようとしました。これは何ら追加の効果を与えなかった。

INFO: Deploying web application archive weather.war 
Feb 15, 2012 3:28:51 PM org.springframework.web.servlet.FrameworkServlet initServletBean 
INFO: FrameworkServlet 'spring-ws': initialization started 
Feb 15, 2012 3:28:51 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh 
INFO: Refreshing WebApplicationContext for namespace 'spring-ws-servlet': startup date [Wed Feb 15 15:28:51 EET 2012]; root of context hierarchy 
Feb 15, 2012 3:28:52 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions 
INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/spring-ws-servlet.xml] 
Feb 15, 2012 3:28:52 PM org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMapping afterPropertiesSet 
INFO: Supporting [WS-Addressing August 2004, WS-Addressing 1.0] 
Feb 15, 2012 3:28:52 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons 
INFO: Pre-instantiating singletons in org.s[email protected]36496381: defining beans [weatherEndpoint,weatherReportManagerWWW,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.SourcePayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.JaxbElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.dom.JDomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.DefaultMethodEndpointAdapter#0,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy 
Feb 15, 2012 3:28:52 PM org.springframework.ws.soap.saaj.SaajSoapMessageFactory afterPropertiesSet 
INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol 
Feb 15, 2012 3:28:52 PM org.springframework.web.servlet.FrameworkServlet initServletBean 
INFO: FrameworkServlet 'spring-ws': initialization completed in 714 ms 
Feb 15, 2012 3:28:52 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory docs 
Feb 15, 2012 3:28:52 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory examples 
Feb 15, 2012 3:28:53 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory host-manager 
Feb 15, 2012 3:28:53 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory lib 
Feb 15, 2012 3:28:53 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory manager 
Feb 15, 2012 3:28:53 PM org.apache.catalina.startup.HostConfig deployDirectory 
INFO: Deploying web application directory ROOT 
Feb 15, 2012 3:28:53 PM org.apache.coyote.http11.Http11Protocol start 
INFO: Starting Coyote HTTP/1.1 on http-8080 
Feb 15, 2012 3:28:53 PM org.apache.coyote.ajp.AjpProtocol start 
INFO: Starting Coyote AJP/1.3 on ajp-8009 
Feb 15, 2012 3:28:53 PM org.apache.catalina.startup.Catalina start 
INFO: Server startup in 8777 ms 
Feb 15, 2012 3:29:07 PM org.springframework.ws.server.MessageDispatcher dispatch 
WARNING: No endpoint mapping found for [SaajSoapMessage {http://mycompany.com/weather/schemas}GetCities] 

私は非常に助けに感謝します。追加のものを見る必要がある場合は、私に知らせてください。

+0

'MessageDispatcherServlet'を' weatherws'の基底パスにマッピングしていますが、他のすべてのエンドポイントはすべて 'weather'であることを示唆しています。 –

+0

@ nicholas.hauschild私が間違っている場合は私を修正してください。私は 'weather.war'からすべてを配備して以来、私はエンドポイント 'http:// localhost:8080/weather/weatherws'を使用していました。その後私はそれを「天気」にマッピングしました。次に、エンドポイント 'http:// localhost:8080/weather/weather'を使用する必要がありましたが、後者は同じ効果がありました。私が見ているように、マッピングは問題ではないようです。サーブレット自体を見つけるように思えるので(サーブレットの初期化に問題があった) – Vampnik

+0

私はSpring-WSに精通していません。それは私にとって奇妙に見えるものです。あなたが 'MessageDispatcherServlet'を打つことを確信しているなら、あなたの知らないコメントを無視してください。 :) –

答えて

7

あなたが持っているエンドポイントのコードで:

private static final String NAMESPACE_URI = "http://mycompany.com/weather/schema"; 

が、あなたのメッセージがhttp://mycompany.com/weather/schemas名前空間からです。最終的なに注意してください。

+1

お返事ありがとうございます。それが問題でした。私は彼らの言うことが真実だと言います。「それはいつも最も小さいものです。私はこれに執着して悩んでいました。 – Vampnik

+0

@soulcheckは、XSDのRequest要素の後ろにRequestを付ける必要があります。これは、それが要求要素であることを石鹸に伝える方法ですか? –

関連する問題