我们正在使用 Axis 1.x 做一个 Web 服务项目,我在让 Maven 构建工作时遇到问题。
我做一个
mvn clean generate-sources
这触发了axistools-maven-plugin的wsdl2java
目标。它最终中止
[INFO] [axistools:wsdl2java {execution: generate-project}]
[INFO] about to add compile source root
[INFO] Processing wsdl: C:\Project\src\main\webapp\WEB-INF\wsdl\project.wsdl
Jan 24, 2011 11:24:58 AM org.apache.axis.utils.JavaUtils isAttachmentSupported
WARNING: Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error generating Java code from WSDL.
Embedded error: Error running Axis
C:\Project\src\main\webapp\WEB-INF\project.xsd (The system cannot find the file specified)
这是对的。那个文件不存在。(并且 -e 不会产生额外的有用信息——它是 LifecycleExecutionException,由 MojoExecutionException 引起,由 AxisPluginException 引起,由 FileNotFoundException 引起。)
关键是,它不应该搜索WEB-INF\project.xsd
,它应该访问WEB-INF\wsdl\project.xsd
.
这是 WSDL 所说的:
<wsdl:types>
<xsd:schema targetNamespace="http://domain/project/">
<xsd:import namespace="http://domain/schema/" schemaLocation="project.xsd"/>
</xsd:schema>
</wsdl:types>
这似乎对我所有的同事都有效。我们都在使用 Maven 2.2.1,axistools-maven-plugin 使用以下配置固定到 1.4:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>generate-project</id>
<goals>
<goal>wsdl2java</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}/src/main/webapp/WEB-INF/wsdl/</sourceDirectory>
<outputDirectory>target/generated-sources</outputDirectory>
<serverSide>true</serverSide>
<testCases>false</testCases>
<wrapArrays>false</wrapArrays>
</configuration>
</execution>
</executions>
</plugin>
我已经完全清除了我的本地 Maven 存储库,希望它是一个恶意依赖项,但这并没有改变任何东西。知道是什么原因导致这只是我,而不是我的同事吗?
编辑 1:我尝试将 schemaLocation 更改为wsdl/project.xsd
(仅出于测试目的,我将无法对 WSDL 进行任何永久性修改)并得到了这个有趣的结果:
Embedded error: Error running Axis
WSDLException (at /wsdl:definitions/wsdl:types/xsd:schema):
faultCode=OTHER_ERROR: An error occurred trying to resolve
schema referenced at 'wsdl\project.xsd', relative to
'file:/C:/Project/src/main/webapp/WEB-INF/wsdl/project.wsdl'.:
This file was not found:
file:/C:/Project/src/main/webapp/WEB-INF/wsdl/wsdl/project.xsd
如果您像我一样,现在认为这可能./project.xsd
会起作用……不,对不起,这使它WEB-INF/project.xsd
再次直接搜索。
编辑2:好的,现在axistools只是在取笑我......
../project.xsd
--> src/main/webapp/project.xsd
(错误)
../wsdl/project.xsd
--> src/main/webapp/wsdl/project.xsd
(错误)
../WEB-INF/wsdl/project.xsd
--> src/main/webapp/WEB-INF/WEB-INF/wsdl/project.xsd
(错误)
提醒一下,正确的路径是src/main/webapp/WEB-INF/wsdl/project.xsd
.