【问题标题】:Xsd schema location can not be found in WSDL file在 WSDL 文件中找不到 Xsd 架构位置
【发布时间】:2011-06-17 21:07:34
【问题描述】:

这个问题已经3天了还没有解决,如果有人可以提供帮助,非常感谢,下面是所有代码。

问题是:如果我将 wsdl 文件(位于我的 eclipse 项目目录中)从硬盘显示到soapUI,则此 Web 服务运行良好。但是,如果我将 url 指定为:

,它将找不到请求模式文件
http://localhost:8080/mwp/mws/mwsid.wsdl

这会正确公开 wsdl 但找不到架构,我从 soapUI 得到错误:

错误:无法加载 url [http://localhost:8080/mwp/mws/Request.xsd]

这是弹簧配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sws="http://www.springframework.org/schema/web-services"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
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
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

<description>
</description>

<bean id="webServicePluginDescriptor"
    class="com.mywebsite.ws.configuration.mtchWebservicePluginDescriptor" />

<bean id="payloadMapping"
      class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
    <property name="defaultEndpoint" ref="inferenceEndPoint" />
    <property name="interceptors">
        <list>
            <ref local="validatingInterceptor" />
            <ref local="payLoadInterceptor" />
        </list>
    </property>
</bean>

<bean id="payLoadInterceptor"
    class="org.springframework.ws.server.endpoint.interceptor.PayloadLoggingInterceptor" />

<bean id="validatingInterceptor"
    class="org.springframework.ws.soap.server.endpoint.interceptor.PayloadValidatingInterceptor">

    <property name="schema"
        value="classpath:/wsdl/Request.xsd" />
    <property name="validateRequest" value="true" />
    <property name="validateResponse" value="false" />
</bean>

<bean id="PropertyResource" class="com.mywebsite.ws.im.PropertyResource">
    <property name="resource"
        value="/WEB-INF/client-specific/InferenceMachine.properties" />
</bean>

<bean id="inferenceEndPoint" class="com.mywebsite.ws.web.InferenceEndPoint">
    <property name="messageWebService" ref="messageWebService" />
</bean>

<bean id="messageWebService" class="com.mywebsite.ws.service.MessageWebService"
    scope="request">
    <aop:scoped-proxy />
    <property name="inferenceService" ref="inferenceService" />
</bean>

<bean id="schema" class="org.springframework.xml.xsd.SimpleXsdSchema">
    <property name="xsd" value="classpath:/wsdl/Request.xsd" />
</bean>

<bean id="mwsid"
    class="org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition">
    <constructor-arg value="classpath:/wsdl/mtchwsdl.wsdl" />
</bean>

<bean id="inferenceService" class="com.mywebsite.ws.im.InferenceService"
    scope="request">
    <aop:scoped-proxy />
    <property name="webServiceConfiguration" ref="wsPlayerConfiguration" />

    <property name="properties">
        <bean class="com.mywebsite.ws.im.PropertyResource">
            <property name="resource"
                value="/WEB-INF/client-specific/InferenceMachine.properties" />
        </bean>
    </property>
</bean>

<!-- ~~~~~~~ Application beans ~~~~~~~ -->
<bean id="wsPlayerConfiguration"
    class="com.mywebsite.ws.configuration.WebServiceConfiguration"
    scope="request">
    <aop:scoped-proxy />
    <property name="playerConfiguration" ref="playerConfiguration"></property>
    <property name="configurationSetup" ref="configurationSetup"></property>
</bean>

这是 wsdl 文件:

 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
              xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
              xmlns:schema="http://www.mywebsitex.com/xml/webservice"
              xmlns:tns="http://www.mywebsitex.com/xml/webservice"
              targetNamespace="http://www.mywebsitex.com/xml/webservice">


<wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <xsd:import namespace="http://www.mywebsitex.com/xml/webservice"                      
            schemaLocation="Request.xsd"/>
    </xsd:schema>

    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <xsd:import namespace="http://www.mywebsitex.com/xml/webservice"                      
            schemaLocation="Response.xsd"/>
    </xsd:schema>

    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <xsd:import namespace="http://www.mywebsitex.com/xml/webservice"                      
            schemaLocation="Error.xsd"/>
    </xsd:schema>
</wsdl:types>


<wsdl:message name="inferencerequest">                                                 
    <!-- <wsdl:part element="schema:inferencerequest" name="inferencerequest"/> -->               
</wsdl:message>
<wsdl:message name="inferenceresponse">                                                 
    <!-- <wsdl:part element="schema:inferenceresponse" name="inferenceresponse"/> -->               
</wsdl:message>
<wsdl:message name="errorresponse">                                                 
    <!-- <wsdl:part element="schema:errorresponse" name="errorresponse"/> -->               
</wsdl:message>

<wsdl:portType name="mtchWS">                                                 
    <wsdl:operation name="inference">
        <wsdl:input message="tns:inferencerequest" name="inferencerequest"/>
        <wsdl:output message="tns:inferenceresponse" name="inferenceresponse"/>
        <wsdl:fault message="tns:errorresponse" name="errorresponse"/>             
    </wsdl:operation>
</wsdl:portType>

<wsdl:binding name="mtchWSBinding" type="tns:mtchWS">                  
    <soap:binding style="document"                                                   
        transport="http://schemas.xmlsoap.org/soap/http"/>                           
    <wsdl:operation name="inference">
        <soap:operation soapAction="http://www.mywebsitex.com/webservice"/>           
        <wsdl:input name="inferencerequest">
            <soap:body use="literal"/>                                               
        </wsdl:input>
        <wsdl:output name="inferenceresponse">
            <soap:body use="literal"/>
        </wsdl:output>
        <wsdl:fault name="errorreponse">
            <!-- <soap:fault use="literal"/>-->
        </wsdl:fault>
    </wsdl:operation>
</wsdl:binding>

<wsdl:service name="mtchWSService">
    <wsdl:port binding="tns:mtchWSBinding" name="mtchWSPort">          
        <soap:address location="http://localhost:8080/mwp/mws"/>             
    </wsdl:port>
</wsdl:service>                  

这就是我在 web.xml 中定义的方式:

<servlet>
    <servlet-name>mws</servlet-name>
    <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
            <param-value>classpath:/resources/mtchwebservice/applicationContext-MtchWebService.xml</param-value>
    </init-param>

    <init-param>
        <param-name>transformWsdlLocations</param-name>
        <param-value>true</param-value>
    </init-param>

    <load-on-startup>2</load-on-startup>
</servlet>

【问题讨论】:

    标签: java web-services spring soap wsdl


    【解决方案1】:

    变化:

    <bean id="schema" class="org.springframework.xml.xsd.SimpleXsdSchema">
        <property name="xsd" value="classpath:/wsdl/Request.xsd" />
    </bean>
    

    到:

    <bean id="Request" class="org.springframework.xml.xsd.SimpleXsdSchema">
        <property name="xsd" value="classpath:/wsdl/Request.xsd" />
    </bean>
    

    应该让 Request.xsd 的架构解析工作。 MessageDispatcherServlet 查找 XsdSchema 类型并根据 id/name 将 xsd 请求解析为模式。

    【讨论】:

    • 哇,我想给你 100 分,Tnx 正在工作!在创建 wsdl 时,我的 Response.xsd 是否与 Request.xsd 一样重要?因为我只验证 request.xml,response.xsd 是为客户提供的,他们看起来并知道响应的样子?
    猜你喜欢
    • 1970-01-01
    • 2018-08-04
    • 2011-02-21
    • 2012-06-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-26
    相关资源
    最近更新 更多