0

I'm using jax-ws maven plugin for generate obiekt from GenericTicketConnectorSOAP.wsdl every object generated without GenericTicketConnectorSOAP, service and port. My pom.xml is wrong or this wsdl isn't prepare to generate service and port ?

Thanks for help.

luprogrammer
  • 155
  • 1
  • 3
  • 12

2 Answers2

0

I cannot use wsdl to generate Java stub classes. I posted my solution here

BTW, the link to your pom does not work. Access denied.

Community
  • 1
  • 1
wolf97084
  • 270
  • 4
  • 22
0

Thanks for your solution. I found other. When I'm using axistools-maven-plugin 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>

everything are generating by itself(port, service itp)

luprogrammer
  • 155
  • 1
  • 3
  • 12