我使用“maven-jaxb22-plugin”生成类,这样我就可以调用用.Net 编写的Web 服务。通常它工作正常,但这次,我只能使用客户端证书通过 HTTPS 访问 WSDL(不能通过 HTTP 访问)。
我能够使它与 SoapUI 一起工作。我将客户端证书添加到 JKS 密钥库中,并将其添加到 SoapUI 首选项中。然后我通过指定如下所示的 URL 创建了一个新项目:https://server.com/Service?wsdl。SoapUI 生成了请求模板。我可以轻松地查询 Web 服务并获得响应。因此,这证明 WSDL 可用并且 Web 服务正在运行。
现在,在我的 pom 文件中,我正在使用这个插件:
<build>
<finalName>MyService</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb22-plugin</artifactId>
<version>0.8.3</version>
<configuration>
<extension>true</extension>
<removeOldOutput>true</removeOldOutput>
<schemaLanguage>WSDL</schemaLanguage>
<verbose>true</verbose>
<schemaIncludes>
<includeSchema>https://server.com/Service?wsdl</includeSchema>
</schemaIncludes>
</configuration>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
如何告诉 Maven 我的客户端证书在哪里?
谢谢