OTRS GenericTicketConnectorSOAP.wsdl无法创建端口和服务

时间:2015-02-04 10:49:22

标签: maven wsdl jax-ws otrs

我使用jax-ws maven插件从GenericTicketConnectorSOAP.wsdl生成obiekt来生成没有GenericTicketConnectorSOAP,服务和端口的每个对象。我的pom.xml错了,或者这个wsdl不准备生成服务和端口?

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

我不能使用wsdl来生成Java存根类。我发布了我的解决方案here

顺便说一下,你的pom的链接不起作用。访问被拒绝。

答案 1 :(得分:0)

感谢您的解决方案。我发现了其他的。当我使用axistools-maven-plugin插件

<plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>axistools-maven-plugin</artifactId>
            <executions>
                <execution>
                    <goals>
                        <goal>wsdl2java</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <urls>
                    <url>file:/${project.basedir}/otrs/Service.wsdl</url>
                </urls>
                <packageSpace>my.package</packageSpace>
                <testCases>false</testCases>
                <serverSide>false</serverSide>
            </configuration>
        </plugin>

一切都是自己生成的(端口,服务itp)