SOAP UI不能根据Spring WS Soap Service中的XSD文件找到WSDL
我有一个Spring SOAP Web服务托管一个导入几个XSD文件的WSDL。 WEB-INF文件夹内的结构如下:
WEB-INF
│ spring-ws-servlet.xml
│ web.xml
│
└───Esquemas
│ composite.xml
│ Esquemas.jpr
│ EsquemasApplication.jws
│ SIAS.wsdl
│
├───src
│ └───META-INF
│ jps-config.xml
│
├───xsd
│ │ hello.html
│ │ readme.txt
│ │ SIAS.xsd
│ │
│ ├───common
│ │ CommonInterchange.xsd
│ │ CommonTypes.xsd
│ │ IdentifyReply.xsd
│ │ readme.txt
│ │
│ └───interchange
│ CAEFF.xsd
│ CSEFF.xsd
│ readme.txt
│
└───xsl
我正在用IntelliJ Idea Ultimate运行该项目。 该项目运行良好,我可以看到wsdl通过
http://localhost:8080/sias.wsdl
但是当我尝试在SoapUI中生成Web服务测试时,出现以下错误:
Error loading [http://localhost:8080/xsd/interchange/CAEFF.xsd]: org.apache.xmlbeans.XmlException: org.apache.xmlbeans.XmlException: error:
事实上,当我在浏览器中尝试该URL时,我收到了404错误代码。
我怎样才能确切地通过GET可用/ WEB-INF / Esquemas / xsd /下的文件夹xsd ?
这是我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>spring-ws</servlet-name>
<servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
<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>*.wsdl</url-pattern>
</servlet-mapping>
</web-app>
这是我的spring-ws-servlet.xml文件
<?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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.app.sample"/>
<sws:annotation-driven/>
<sws:static-wsdl id="sias"
location="/WEB-INF/Esquemas/SIAS.wsdl"/>
</beans>
我发现了这个问题。 我使用旧版本来生成jaxb类和更新版本来生成SoapUi请求。 这两个版本的命名空间略有不同。
链接地址: http://www.djcxy.com/p/66665.html上一篇: SOAP UI not finding WSDL depending XSD files in Spring WS Soap Service