13 Replies Latest reply on Feb 2, 2012 7:29 AM by whitingjr

    What Maven Dependencies Should I use with wsconsume?

    pbaker01

      Environment:

       

      JBoss AS6

      JSF 1.2

      Richfaces 4.0

       

      when compiling wsconsume generated code using Maven I receive error:

       

      [ERROR] \Eclipse_Workspaces\xxxxxx\src\main\java\com.mypackage.myfirstservice
      /MyFirstService_Service.java:[62,8] cannot find symbol

      [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

      [ERROR] location: class javax.xml.ws.Service

       

      My project also uses jsf / richfaces.

      My pom file contains the following dependencies.

       

      What dependencies should I be using?  Where can I find additional documentation on JBoss and Maven dependencies?

       

      <?xml version="1.0" encoding="UTF-8"?>
      <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
      http://maven.apache.org/xsd/maven-4.0.0.xsd">
       <modelVersion>4.0.0</modelVersion>
       <groupId>com.xxx</groupId>
       <artifactId>xxxxxx</artifactId>
       <version>0.0.1-SNAPSHOT</version>
       <packaging>war</packaging>
       <name>xxxxxx</name>
       <description>AHMXXX Client Project</description>
       <repositories>
        <repository>
         <id>JBOSS</id>
         <name>JBoss Repository</name>
         <url>https://repository.jboss.org/nexus/content/groups/public/</url>
        </repository>
       </repositories>
       <pluginRepositories>
        <pluginRepository>
         <id>JBOSS</id>
         <name>JBoss Repository</name>
         <url>https://repository.jboss.org/nexus/content/groups/public/</url>
        </pluginRepository>
       </pluginRepositories>
       <build>
        <pluginManagement />
        <plugins>
         <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-war-plugin</artifactId>
          <version>2.1.1</version>
          <configuration>
           <warSourceDirectory>WebContent</warSourceDirectory>
           <webXml>WebContent/WEB-INF/web.xml</webXml>
          </configuration>
         </plugin>
         <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>jboss-maven-plugin</artifactId>
          <version>1.5.0</version>
          <configuration>
           <jbossHome>C:\JBoss\jboss-6.0.0.Final\</jbossHome>
           <serverName>default</serverName>
           <fileName>${project.basedir}/target/${project.build.finalName}.war
          </fileName>
          </configuration>
         </plugin>
         <plugin>
          <groupId>org.jboss.ws.plugins</groupId>
          <artifactId>maven-jaxws-tools-plugin</artifactId>
          <version>1.0.1.GA</version>
          <executions>
           <execution>
            <id>MyFirstService</id>
            <goals>
             <goal>wsconsume</goal>
            </goals>
            <configuration>
             <wsdls>
              <wsdl>http://localhost:8080/MyFirstService?wsdl</wsdl>
             </wsdls>
             <targetPackage>com.mypackage.myfirstservice</targetPackage>
             <sourceDirectory>${project.basedir}/src/main/java
            </sourceDirectory>
             <extension>true</extension>
             <verbose>true</verbose>
             <goalPrefix>wsconsume</goalPrefix>
            </configuration>
           </execution>
           <execution>
            <id>MySecondService</id>
            <goals>
             <goal>wsconsume</goal>
            </goals>
            <configuration>
             <wsdls>
              <wsdl>http://localhost:8080/MySecondService?wsdl</wsdl>
             </wsdls>
             <targetPackage>com.mypackage.mysecondservice</targetPackage>
             <sourceDirectory>${project.basedir}/src/main/java
            </sourceDirectory>
             <extension>true</extension>
             <verbose>true</verbose>
             <goalPrefix>wsconsume</goalPrefix>
            </configuration>
           </execution>
          </executions>
         </plugin>
        </plugins>
       </build>
       
       <dependencies>
        <dependency>
         <groupId>org.jboss.ws.native</groupId>
         <artifactId>jbossws-native-client</artifactId>
         <version>3.4.1.GA</version>
        </dependency>
        <dependency>
         <groupId>org.jboss</groupId>
         <artifactId>jbossxb</artifactId>
         <version>2.0.3.GA</version>
        </dependency>
       </dependencies>
      </project>
      

       

      I have been struggling with configuring Maven and I very much appreciate the help that this forum provides.

       

      Paul

        • 1. Re: What Maven Dependencies Should I use with wsconsume?
          peterj

          I think that the javax.xml.ws.Service class being referenced in the classpath doesn't like the ocnstructor signature. I checked the javaee-web-api JAR for Java EE 6 and the signature matches.

           

          I then checked jbossws-native-client. That is a classpath JAR which contains no classes itself - instead in references other JAR files. This is a convenience mechanism so that you need to specify only one JAR on the classpath when you run your client. This JAR should not be used to build the client. At least, not from a Maven perspective because the required JARs will not be in the build classpath.

           

          I scanned the JBoss AS 6 JARs looking for  javax.xml.ws.Service and found it in client/jboss-jaxws-api_2.2_spec.jar. I opened that JAR file and found the POm at META-INF/maven/.../pom.xml. In there I saw this coordinate:

           

             <groupId>org.jboss.spec.javax.xml.ws</groupId>

            <artifactId>jboss-jaxws-api_2.2_spec</artifactId>

            <version>1.0.0.Final</version>

           

          Perhaps you should use this as a dependency instead of the jbossws-native-client.

           

           

          By the way, for general Maven documentation, see:

          http://freecomputerbooks.com/better-builds-with-maven.html (good beginners book)

          http://www.sonatype.com/books/mvnref-book/reference/ (all the gory details)

          The best way I know to learn Maven internals is to write a Maven plugin.  The Maven: The Complete Reference book has a chapter on doing that.

           

          For JBoss and Maven, see

          http://community.jboss.org/wiki/MavenGettingStarted-Users

          (there might also be other wiki pages)

          Please note that I have barely glance at any of the JBoss Maven wiki pages (usually just to find the repository location). All of my answers have been based on what I know about Maven.

          • 2. Re: What Maven Dependencies Should I use with wsconsume?
            pbaker01

            Hi Peter,

            Thank you for replying and for the links.  I tried replacing jbossws-native-client with jboss-jaxws-api_2.2_spec amd that did not work.   But you have given me some infomration to keep me going.  I will sort out the dependencies and then post back the process I followed and the final set.   I also like your idea about writing a plugin to increase my understanding of how maven works.. I'll do that.  Thanks again!  Paul

            • 3. Re: What Maven Dependencies Should I use with wsconsume?
              pbaker01

              I have not been able to find a solution to wsconsume dependency problem.  Does anyone have a sample settings/pom file that they could share that works with wsconsume and generates a clean build?  I would be very grateful.

               

              I am able to generate the client proxies but during the build I get errors on the Service signature.  I cannot find where it is getting the invalid signature from....

               

              cannot find symbol -> Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

               

              I have tried to explicitly include javax with the Service signature but that did not work either.

               

              Using JBoss AS6

              Running Maven from Eclipse Helios.

              Window 7

               

              I have attached the sample TestService and TestClient eclipse project.

              I would very much appreciate guidance anyone could offer.

               

              The errors I get are:

               

               

              [INFO] BUILD FAILURE

              [INFO] ------------------------------------------------------------------------

              [INFO] Total time: 2.696s

              [INFO] Finished at: Sat Sep 24 22:13:58 EDT 2011

              [INFO] Final Memory: 11M/245M

              [INFO] ------------------------------------------------------------------------

              [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project TestClient: Compilation failure: Compilation failure:

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[46,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[54,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[62,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

               

              I have tried numerous combinations of dependencies.  I have had some success with metro and cxf but I would like to get native to work.

               

              Here is my pom file:

               

              <?xml version="1.0" encoding="UTF-8"?>
              <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
               <modelVersion>4.0.0</modelVersion>
               <groupId>com.mytest</groupId>
               <artifactId>TestClient</artifactId>
               <version>0.0.1-SNAPSHOT</version>
               <build>
                <pluginManagement />
                <plugins>
                 <plugin>
                  <groupId>org.jboss.ws.plugins</groupId>
                  <artifactId>maven-jaxws-tools-plugin</artifactId>
                  <version>1.0.1.GA</version>
                  <executions>
                   <execution>
                    <id>MyService</id>
                    <goals>
                     <goal>wsconsume</goal>
                    </goals>
                    <configuration>
                     <wsdls>
                      <wsdl>http://localhost:8080/TestService?wsdl</wsdl>
                     </wsdls>
                     <targetPackage>com.myservice.proxy</targetPackage>
                     <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
                     <extension>true</extension>
                     <verbose>true</verbose>
                     <goalPrefix>wsconsume</goalPrefix>
                    </configuration>
                   </execution>
                  </executions>
                 </plugin>
                </plugins>
               </build>
               <dependencies>
                <dependency>
                 <groupId>org.jboss.ws.native</groupId>
                 <artifactId>jbossws-native-client</artifactId>
                 <version>3.4.1.GA</version>
                 <type>jar</type>
                 <scope>compile</scope>
                </dependency>
                <dependency>
                 <groupId>org.jboss</groupId>
                 <artifactId>jboss-common-core</artifactId>
                 <version>2.2.18.GA</version>
                 <type>jar</type>
                 <scope>compile</scope>
                </dependency>
               </dependencies>
              </project>
              

               

              Here is my settings file:

               

              <?xml version="1.0" encoding="UTF-8"?>
              <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 
                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
                        xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
                <pluginGroups>
               <pluginGroup>org.jboss.maven.plugins</pluginGroup>
               <pluginGroup>org.jboss.ws.plugins</pluginGroup>
                </pluginGroups>
                <proxies>
                </proxies>
                <servers>
                </servers>
                <mirrors>
                </mirrors>
                
                <profiles>
                    <profile>
                    <id>jboss-public-repository</id>
                    <repositories>
                      <repository>
                        <id>jboss-public-repository-group</id>
                        <name>JBoss Public Maven Repository Group</name>
                        <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
                        <layout>default</layout>
                        <releases>
                          <enabled>true</enabled>
                          <updatePolicy>never</updatePolicy>
                        </releases>
                        <snapshots>
                          <enabled>true</enabled>
                          <updatePolicy>never</updatePolicy>
                        </snapshots>
                      </repository>
                
                <repository> 
                 <id>jboss-deprecated-repository</id> 
                 <name>JBoss Deprecated Maven Repository</name> 
                 <url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url> 
                 <layout>default</layout> 
                 <releases> 
                  <enabled>true</enabled> 
                  <updatePolicy>never</updatePolicy> 
                 </releases> 
                 <snapshots> 
                  <enabled>false</enabled> 
                  <updatePolicy>never</updatePolicy> 
                 </snapshots> 
                </repository> 
                    </repositories>
                    <pluginRepositories>
                      <pluginRepository>
                        <id>jboss-public-repository-group</id>
                        <name>JBoss Public Maven Repository Group</name>
                        <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
                        <layout>default</layout>
                        <releases>
                          <enabled>true</enabled>
                          <updatePolicy>never</updatePolicy>
                        </releases>
                        <snapshots>
                          <enabled>true</enabled>
                          <updatePolicy>never</updatePolicy>
                        </snapshots>
                      </pluginRepository>
                    </pluginRepositories>
                  </profile>
                
                </profiles>
                
                <activeProfiles>
                  <activeProfile>jboss-public-repository</activeProfile>
                </activeProfiles>
              </settings>
              

               

               

              Here is the complete maven output:

              Apache Maven 3.0.2 (r1056850; 2011-01-08 19:58:10-0500)

              Java version: 1.6.0_27, vendor: Sun Microsystems Inc.

              Java home: C:\Java\x64\jdk1.6.0_27\jre

              Default locale: en_US, platform encoding: Cp1252

              OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"

              [INFO] Error stacktraces are turned on.

              [DEBUG] Reading global settings from EMBEDDED\conf\settings.xml

              [DEBUG] Reading user settings from C:\Users\Paul\.m2\settings.xml

              [DEBUG] Using local repository at C:\Users\Paul\.m2\repository

              [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for C:\Users\Paul\.m2\repository

              [INFO] Scanning for projects...

              [DEBUG] Extension realms for project com.mytest:TestClient:jar:0.0.1-SNAPSHOT: (none)

              [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]

              [DEBUG] === REACTOR BUILD PLAN ================================================

              [DEBUG] Project: com.mytest:TestClient:jar:0.0.1-SNAPSHOT

              [DEBUG] Tasks: [install]

              [DEBUG] Style: Regular

              [DEBUG] =======================================================================

              [INFO]

              [INFO] ------------------------------------------------------------------------

              [INFO] Building TestClient 0.0.1-SNAPSHOT

              [INFO] ------------------------------------------------------------------------

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]

              [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]

              [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]

              [DEBUG] === PROJECT BUILD PLAN ================================================

              [DEBUG] Project: com.mytest:TestClient:0.0.1-SNAPSHOT

              [DEBUG] Dependencies (collect): []

              [DEBUG] Dependencies (resolve): [compile, runtime, test]

              [DEBUG] Repositories (dependencies): [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public-jboss/, releases=true, snapshots=true, managed=false), jboss-deprecated-repository (https://repository.jboss.org/nexus/content/repositories/deprecated/, releases=true, snapshots=false, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]

              [DEBUG] Repositories (plugins) : [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public-jboss/, releases=true, snapshots=true, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA:wsconsume (MyService)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <additionalHeaders default-value="false"/>

              <classpathElements>${project.compileClasspathElements}</classpathElements>

              <extension default-value="false">true</extension>

              <fork default-value="false"/>

              <outputDirectory default-value="${project.build.outputDirectory}"/>

              <project>${project}</project>

              <sourceDirectory default-value="${project.build.directory}/wsconsume/java">E:\Eclipse_Workspaces\AHM565\TestClient/src/main/java</sourceDirectory>

              <targetPackage>com.myservice.proxy</targetPackage>

              <verbose default-value="false">true</verbose>

              <wsdls>

              <wsdl>http://localhost:8080/TestService?wsdl</wsdl>

              </wsdls>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <buildFilters default-value="${project.build.filters}"/>

              <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>

              <escapeString default-value="${maven.resources.escapeString}"/>

              <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>

              <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>

              <outputDirectory default-value="${project.build.outputDirectory}"/>

              <overwrite default-value="false">${maven.resources.overwrite}</overwrite>

              <project default-value="${project}"/>

              <resources default-value="${project.resources}"/>

              <session default-value="${session}"/>

              <useBuildFilters default-value="true"/>

              <useDefaultDelimiters default-value="true"/>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <basedir default-value="${basedir}"/>

              <buildDirectory default-value="${project.build.directory}"/>

              <classpathElements default-value="${project.compileClasspathElements}"/>

              <compileSourceRoots default-value="${project.compileSourceRoots}"/>

              <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>

              <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>

              <debug default-value="true">${maven.compiler.debug}</debug>

              <debuglevel>${maven.compiler.debuglevel}</debuglevel>

              <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>

              <executable>${maven.compiler.executable}</executable>

              <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>

              <fork default-value="false">${maven.compiler.fork}</fork>

              <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>

              <maxmem>${maven.compiler.maxmem}</maxmem>

              <meminitial>${maven.compiler.meminitial}</meminitial>

              <optimize default-value="false">${maven.compiler.optimize}</optimize>

              <outputDirectory default-value="${project.build.outputDirectory}"/>

              <outputFileName>${project.build.finalName}</outputFileName>

              <projectArtifact default-value="${project.artifact}"/>

              <session default-value="${session}"/>

              <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>

              <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>

              <source default-value="1.5">${maven.compiler.source}</source>

              <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>

              <target default-value="1.5">${maven.compiler.target}</target>

              <verbose default-value="false">${maven.compiler.verbose}</verbose>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <buildFilters default-value="${project.build.filters}"/>

              <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>

              <escapeString default-value="${maven.resources.escapeString}"/>

              <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>

              <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>

              <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>

              <overwrite default-value="false">${maven.resources.overwrite}</overwrite>

              <project default-value="${project}"/>

              <resources>${project.testResources}</resources>

              <session default-value="${session}"/>

              <useBuildFilters default-value="true"/>

              <useDefaultDelimiters default-value="true"/>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <basedir default-value="${basedir}"/>

              <buildDirectory default-value="${project.build.directory}"/>

              <classpathElements default-value="${project.testClasspathElements}"/>

              <compileSourceRoots default-value="${project.testCompileSourceRoots}"/>

              <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>

              <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>

              <debug default-value="true">${maven.compiler.debug}</debug>

              <debuglevel>${maven.compiler.debuglevel}</debuglevel>

              <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>

              <executable>${maven.compiler.executable}</executable>

              <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>

              <fork default-value="false">${maven.compiler.fork}</fork>

              <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-sources/test-annotations"/>

              <maxmem>${maven.compiler.maxmem}</maxmem>

              <meminitial>${maven.compiler.meminitial}</meminitial>

              <optimize default-value="false">${maven.compiler.optimize}</optimize>

              <outputDirectory default-value="${project.build.testOutputDirectory}"/>

              <outputFileName>${project.build.finalName}</outputFileName>

              <session default-value="${session}"/>

              <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>

              <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>

              <skip>${maven.test.skip}</skip>

              <source default-value="1.5">${maven.compiler.source}</source>

              <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>

              <target default-value="1.5">${maven.compiler.target}</target>

              <testSource>${maven.compiler.testSource}</testSource>

              <testTarget>${maven.compiler.testTarget}</testTarget>

              <verbose default-value="false">${maven.compiler.verbose}</verbose>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <argLine>${argLine}</argLine>

              <basedir default-value="${basedir}"/>

              <childDelegation default-value="false">${childDelegation}</childDelegation>

              <classesDirectory default-value="${project.build.outputDirectory}"/>

              <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>

              <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>

              <enableAssertions default-value="true">${enableAssertions}</enableAssertions>

              <excludedGroups>${excludedGroups}</excludedGroups>

              <failIfNoTests>${failIfNoTests}</failIfNoTests>

              <forkMode default-value="once">${forkMode}</forkMode>

              <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>

              <groups>${groups}</groups>

              <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>

              <jvm>${jvm}</jvm>

              <localRepository>${localRepository}</localRepository>

              <objectFactory>${objectFactory}</objectFactory>

              <parallel>${parallel}</parallel>

              <parallelMavenExecution default-value="${session.parallel}"/>

              <perCoreThreadCount>${perCoreThreadCount}</perCoreThreadCount>

              <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>

              <printSummary default-value="true">${surefire.printSummary}</printSummary>

              <project default-value="${project}"/>

              <projectArtifactMap>${project.artifactMap}</projectArtifactMap>

              <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>

              <remoteRepositories>${project.pluginArtifactRepositories}</remoteRepositories>

              <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>

              <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>

              <session>${session}</session>

              <skip default-value="false">${maven.test.skip}</skip>

              <skipExec>${maven.test.skip.exec}</skipExec>

              <skipTests default-value="false">${skipTests}</skipTests>

              <test>${test}</test>

              <testClassesDirectory default-value="${project.build.testOutputDirectory}"/>

              <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>

              <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>

              <testSourceDirectory default-value="${project.build.testSourceDirectory}"/>

              <threadCount>${threadCount}</threadCount>

              <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>

              <useFile default-value="true">${surefire.useFile}</useFile>

              <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>

              <useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader>

              <useUnlimitedThreads>${useUnlimitedThreads}</useUnlimitedThreads>

              <workingDirectory>${basedir}</workingDirectory>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:2.3.1:jar (default-jar)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <classesDirectory>${project.build.outputDirectory}</classesDirectory>

              <defaultManifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</defaultManifestFile>

              <finalName default-value="${project.build.finalName}">${jar.finalName}</finalName>

              <forceCreation default-value="false">${jar.forceCreation}</forceCreation>

              <outputDirectory>${project.build.directory}</outputDirectory>

              <project>${project}</project>

              <useDefaultManifestFile default-value="false">${jar.useDefaultManifestFile}</useDefaultManifestFile>

              </configuration>

              [DEBUG] -----------------------------------------------------------------------

              [DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.3.1:install (default-install)

              [DEBUG] Style: Regular

              [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

              <configuration>

              <artifact default-value="${project.artifact}"/>

              <attachedArtifacts default-value="${project.attachedArtifacts}"/>

              <createChecksum default-value="false">${createChecksum}</createChecksum>

              <localRepository>${localRepository}</localRepository>

              <packaging default-value="${project.packaging}"/>

              <pomFile default-value="${project.file}"/>

              <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo>

              </configuration>

              [DEBUG] =======================================================================

              [DEBUG] Could not find metadata org.jvnet.staxex:stax-ex/maven-metadata.xml in local (C:\Users\Paul\.m2\repository)

              [DEBUG] Failure to find org.jvnet.staxex:stax-ex/maven-metadata.xml in https://repository.jboss.org/nexus/content/groups/public-jboss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced

              [DEBUG] Failure to find org.jvnet.staxex:stax-ex/maven-metadata.xml in https://repository.jboss.org/nexus/content/repositories/deprecated/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-deprecated-repository has elapsed or updates are forced

              [DEBUG] Skipped remote update check for org.jvnet.staxex:stax-ex/maven-metadata.xml, locally cached metadata up-to-date.

              [DEBUG] Could not find metadata com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml in local (C:\Users\Paul\.m2\repository)

              [DEBUG] Failure to find com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml in https://repository.jboss.org/nexus/content/groups/public-jboss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced

              [DEBUG] Skipped remote update check for com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml, locally cached metadata up-to-date.

              [DEBUG] Could not find metadata com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml in local (C:\Users\Paul\.m2\repository)

              [DEBUG] Failure to find com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml in https://repository.jboss.org/nexus/content/groups/public-jboss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced

              [DEBUG] Skipped remote update check for com.sun.istack:istack-commons-runtime:1.1-SNAPSHOT/maven-metadata.xml, locally cached metadata up-to-date.

              [DEBUG] Could not find metadata com.sun.istack:istack-commons:1.1-SNAPSHOT/maven-metadata.xml in local (C:\Users\Paul\.m2\repository)

              [DEBUG] Failure to find com.sun.istack:istack-commons:1.1-SNAPSHOT/maven-metadata.xml in https://repository.jboss.org/nexus/content/groups/public-jboss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced

              [DEBUG] Skipped remote update check for com.sun.istack:istack-commons:1.1-SNAPSHOT/maven-metadata.xml, locally cached metadata up-to-date.

              [WARNING] The POM for woodstox:wstx-asl:jar:3.2.1 is missing, no dependency information available

              [WARNING] The POM for ws-commons:policy:jar:1.0 is missing, no dependency information available

              [DEBUG] com.mytest:TestClient:jar:0.0.1-SNAPSHOT

              [DEBUG] org.jboss.ws.native:jbossws-native-client:jar:3.4.1.GA:compile

              [DEBUG] org.jboss.ws.native:jbossws-native-core:jar:3.4.1.GA:compile

              [DEBUG] org.jboss.ws:jbossws-common:jar:1.4.1.GA:compile

              [DEBUG] jboss.jaxbintros:jboss-jaxb-intros:jar:1.0.2.GA:compile

              [DEBUG] commons-beanutils:commons-beanutils:jar:1.8.0:compile

              [DEBUG] junit:junit:jar:3.8.2:compile

              [DEBUG] org.jboss.ws:jbossws-framework:jar:3.4.1.GA:compile

              [DEBUG] org.jboss.ws:jbossws-spi:jar:1.4.1.GA:compile

              [DEBUG] org.apache.ant:ant:jar:1.7.1:compile

              [DEBUG] org.apache.ant:ant-launcher:jar:1.7.1:compile

              [DEBUG] dom4j:dom4j:jar:1.6.1:compile

              [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile

              [DEBUG] gnu-getopt:getopt:jar:1.0.13:compile

              [DEBUG] org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:jar:1.0.0.Final:compile

              [DEBUG] org.jboss.spec.javax.xml.ws:jboss-jaxws-api_2.2_spec:jar:1.0.0.Final:compile

              [DEBUG] javax.jws:jsr181-api:jar:1.0-MR1:compile

              [DEBUG] commons-logging:commons-logging:jar:1.1.1:compile

              [DEBUG] com.sun.xml.bind:jaxb-impl:jar:2.2:compile

              [DEBUG] javax.xml.bind:jaxb-api:jar:2.2:compile

              [DEBUG] javax.xml.stream:stax-api:jar:1.0-2:compile

              [DEBUG] com.sun.xml.bind:jaxb-xjc:jar:2.2:compile

              [DEBUG] com.sun.xml.fastinfoset:FastInfoset:jar:1.2.2:compile

              [DEBUG] com.sun.xml.ws:jaxws-rt:jar:2.2:compile

              [DEBUG] com.sun.xml.stream.buffer:streambuffer:jar:1.0:compile

              [DEBUG] org.codehaus.woodstox:wstx-asl:jar:3.2.3:compile

              [DEBUG] org.jvnet.staxex:stax-ex:jar:1.2:compile

              [DEBUG] com.sun.org.apache.xml.internal:resolver:jar:20050927:compile

              [DEBUG] com.sun.xml.ws:policy:jar:2.0-b01:compile

              [DEBUG] com.sun.xml.txw2:txw2:jar:20090102:compile

              [DEBUG] com.sun.istack:istack-commons-runtime:jar:1.1-SNAPSHOT:compile

              [DEBUG] woodstox:wstx-asl:jar:3.2.1:runtime

              [DEBUG] com.sun.xml.ws:jaxws-tools:jar:2.2:compile

              [DEBUG] org.codehaus.jettison:jettison:jar:1.0-RC2:compile

              [DEBUG] stax:stax-api:jar:1.0.1:compile

              [DEBUG] org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.0.Final:compile

              [DEBUG] javax.mail:mail:jar:1.4.2:compile

              [DEBUG] javax.activation:activation:jar:1.1:compile

              [DEBUG] org.jboss.netty:netty:jar:3.2.3.Final:compile

              [DEBUG] ws-commons:policy:jar:1.0:compile

              [DEBUG] org.codehaus.woodstox:wstx-lgpl:jar:3.2.6:compile

              [DEBUG] wsdl4j:wsdl4j:jar:1.6.2:compile

              [DEBUG] org.apache:xmlsec:jar:1.4.3:compile

              [DEBUG] javassist:javassist:jar:3.12.1.GA:compile

              [DEBUG] org.jboss.ws.native:jbossws-native-factories:jar:3.4.1.GA:compile

              [DEBUG] org.jboss.ws.native:jbossws-native-services:jar:3.4.1.GA:compile

              [DEBUG] org.jboss.spec.javax.xml.rpc:jboss-jaxrpc-api_1.1_spec:jar:1.0.0.Final:compile

              [DEBUG] org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.0.Final:compile

              [DEBUG] org.jboss.logging:jboss-logging-log4j:jar:2.2.0.CR1:compile

              [DEBUG] log4j:log4j:jar:1.2.15:compile

              [DEBUG] javax.jms:jms:jar:1.1:compile

              [DEBUG] org.jboss.logging:jboss-logging-spi:jar:2.2.0.CR1:compile

              [DEBUG] org.jboss:jboss-common-core:jar:2.2.18.GA:compile

              [INFO]

              [INFO] --- maven-jaxws-tools-plugin:1.0.1.GA:wsconsume (MyService) @ TestClient ---

              [DEBUG] org.jboss.ws.plugins:maven-jaxws-tools-plugin:jar:1.0.1.GA:

              [DEBUG] org.jboss.ws:jbossws-spi:jar:1.4.0.CR1:compile

              [DEBUG] log4j:log4j:jar:1.2.14:compile

              [DEBUG] org.apache.ant:ant:jar:1.7.1:compile

              [DEBUG] org.apache.ant:ant-launcher:jar:1.7.1:compile

              [DEBUG] dom4j:dom4j:jar:1.6.1:compile

              [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile

              [DEBUG] gnu-getopt:getopt:jar:1.0.13:compile

              [DEBUG] org.apache.maven:maven-project:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-settings:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-profile:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-model:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.11:compile

              [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.11:compile

              [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.1:compile

              [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.6:compile

              [DEBUG] org.apache.maven:maven-artifact:jar:2.0.11:compile

              [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

              [DEBUG] junit:junit:jar:3.8.1:compile

              [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile

              [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.4:compile

              [DEBUG] Created new class realm maven.api

              [DEBUG] Importing foreign packages into class realm maven.api

              [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core

              [DEBUG] Imported: org.sonatype.aether.transfer < plexus.core

              [DEBUG] Imported: org.apache.maven.exception < plexus.core

              [DEBUG] Imported: org.sonatype.aether.metadata < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core

              [DEBUG] Imported: org.sonatype.aether.collection < plexus.core

              [DEBUG] Imported: org.sonatype.aether.version < plexus.core

              [DEBUG] Imported: org.apache.maven.monitor < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core

              [DEBUG] Imported: org.apache.maven.repository < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core

              [DEBUG] Imported: org.apache.maven.profiles < plexus.core

              [DEBUG] Imported: org.sonatype.aether.repository < plexus.core

              [DEBUG] Imported: org.apache.maven.classrealm < plexus.core

              [DEBUG] Imported: org.apache.maven.execution < plexus.core

              [DEBUG] Imported: org.sonatype.aether.artifact < plexus.core

              [DEBUG] Imported: org.sonatype.aether.spi < plexus.core

              [DEBUG] Imported: org.apache.maven.reporting < plexus.core

              [DEBUG] Imported: org.apache.maven.usability < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.container < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.component < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core

              [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core

              [DEBUG] Imported: org.sonatype.aether.graph < plexus.core

              [DEBUG] Imported: org.sonatype.aether.* < plexus.core

              [DEBUG] Imported: org.apache.maven.settings < plexus.core

              [DEBUG] Imported: org.codehaus.classworlds < plexus.core

              [DEBUG] Imported: org.sonatype.aether.impl < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.* < plexus.core

              [DEBUG] Imported: org.apache.maven.toolchain < plexus.core

              [DEBUG] Imported: org.sonatype.aether.deployment < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException

              < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core

              [DEBUG] Imported: org.apache.maven.configuration < plexus.core

              [DEBUG] Imported: org.apache.maven.cli < plexus.core

              [DEBUG] Imported: org.sonatype.aether.installation < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.context < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core

              [DEBUG] Imported: org.apache.maven.project < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core

              [DEBUG] Imported: org.apache.maven.artifact < plexus.core

              [DEBUG] Imported: org.apache.maven.model < plexus.core

              [DEBUG] Imported: org.apache.maven.* < plexus.core

              [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core

              [DEBUG] Imported: org.sonatype.aether.resolution < plexus.core

              [DEBUG] Imported: org.apache.maven.plugin < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.* < plexus.core

              [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core

              [DEBUG] Populating class realm maven.api

              [DEBUG] Created new class realm plugin>org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA

              [DEBUG] Importing foreign packages into class realm plugin>org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA

              [DEBUG] Imported: < maven.api

              [DEBUG] Populating class realm plugin>org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA

              [DEBUG] Included: org.jboss.ws.plugins:maven-jaxws-tools-plugin:jar:1.0.1.GA

              [DEBUG] Included: org.jboss.ws:jbossws-spi:jar:1.4.0.CR1

              [DEBUG] Included: log4j:log4j:jar:1.2.14

              [DEBUG] Included: org.apache.ant:ant:jar:1.7.1

              [DEBUG] Included: org.apache.ant:ant-launcher:jar:1.7.1

              [DEBUG] Included: dom4j:dom4j:jar:1.6.1

              [DEBUG] Included: xml-apis:xml-apis:jar:1.0.b2

              [DEBUG] Included: gnu-getopt:getopt:jar:1.0.13

              [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.1

              [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.6

              [DEBUG] Included: junit:junit:jar:3.8.1

              [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.11

              [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.11

              [DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1

              [DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2

              [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.4

              [DEBUG] Configuring mojo org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA:wsconsume from plugin realm ClassRealm[plugin>org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA, parent: sun.misc.Launcher$AppClassLoader@12360be0]

              [DEBUG] Configuring mojo 'org.jboss.ws.plugins:maven-jaxws-tools-plugin:1.0.1.GA:wsconsume' with basic configurator -->

              [DEBUG] (f) additionalHeaders = false

              [DEBUG] (f) classpathElements = [E:\Eclipse_Workspaces\AHM565\TestClient\target\classes, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar, C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar, C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar, C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar, C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar, C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar, C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar, C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar, C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar, C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar, C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar, C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar, C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar, C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar, C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar, C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar, C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar, C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar, C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar, C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar, C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar, C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar, C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar, C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar, C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar, C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar, C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar, C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar, C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar, C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar]

              [DEBUG] (f) extension = true

              [DEBUG] (f) fork = false

              [DEBUG] (f) outputDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [DEBUG] (f) project = MavenProject: com.mytest:TestClient:0.0.1-SNAPSHOT @ E:\Eclipse_Workspaces\AHM565\TestClient\pom.xml

              [DEBUG] (f) sourceDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java

              [DEBUG] (f) targetPackage = com.myservice.proxy

              [DEBUG] (f) verbose = true

              [DEBUG] (f) wsdls = [http://localhost:8080/TestService?wsdl]

              [DEBUG] -- end configuration --

              [INFO] Classpath:

              [INFO] E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar

              [INFO] C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar

              [INFO] C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar

              [INFO] C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar

              [INFO] C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar

              [INFO] C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar

              [INFO] C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar

              [INFO] C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar

              [INFO] C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar

              [INFO] C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar

              [INFO] C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar

              [INFO] C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar

              [INFO] C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar

              [INFO] C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar

              [INFO] C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar

              [INFO] C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar

              [INFO] C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar

              [INFO] C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar

              parsing WSDL...

               

                

              generating code...

               

              com\myservice\proxy\Hello.java

              com\myservice\proxy\HelloResponse.java

              com\myservice\proxy\ObjectFactory.java

              com\myservice\proxy\TestService.java

              com\myservice\proxy\TestServiceImplService.java

              com\myservice\proxy\package-info.java

              [INFO]

              [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ TestClient ---

              [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3:

              [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile

              [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile

              [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile

              [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile

              [DEBUG] commons-cli:commons-cli:jar:1.0:compile

              [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile

              [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile

              [DEBUG] classworlds:classworlds:jar:1.1:compile

              [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile

              [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

              [DEBUG] junit:junit:jar:3.8.1:compile

              [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile

              [DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0-beta-4:compile

              [DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile

              [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile

              [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3

              [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3

              [DEBUG] Imported: < maven.api

              [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3

              [DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3

              [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6

              [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7

              [DEBUG] Included: commons-cli:commons-cli:jar:1.0

              [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4

              [DEBUG] Included: junit:junit:jar:3.8.1

              [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5

              [DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-4

              [DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4

              [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13

              [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6

              [DEBUG] Excluded: classworlds:classworlds:jar:1.1

              [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6

              [DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1

              [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: sun.misc.Launcher$AppClassLoader@12360be0]

              [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->

              [DEBUG] (f) buildFilters = []

              [DEBUG] (f) escapeWindowsPaths = true

              [DEBUG] (s) includeEmptyDirs = false

              [DEBUG] (s) outputDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [DEBUG] (s) overwrite = false

              [DEBUG] (f) project = MavenProject: com.mytest:TestClient:0.0.1-SNAPSHOT @ E:\Eclipse_Workspaces\AHM565\TestClient\pom.xml

              [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: E:\Eclipse_Workspaces\AHM565\TestClient\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]

              [DEBUG] (f) session = org.apache.maven.execution.MavenSession@3b961a84

              [DEBUG] (f) useBuildFilters = true

              [DEBUG] (s) useDefaultDelimiters = true

              [DEBUG] -- end configuration --

              [DEBUG] properties used {java.vendor=Sun Microsystems Inc., env.SYSTEMROOT=C:\Windows, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows 7, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\Java\x64\jdk1.6.0_27\jre\lib\resources.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\rt.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\sunrsasign.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\jsse.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\jce.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\charsets.jar;C:\Java\x64\jdk1.6.0_27\jre\lib\modules\jdk.boot.jar;C:\Java\x64\jdk1.6.0_27\jre\classes, env.COMPUTERNAME=GRETTA06, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Sun Microsystems Inc., java.runtime.version=1.6.0_27-b07, env.HOMEPATH=\Users\Paul, user.name=Paul, env.QTJAVA=C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip, env.PATH=C:\csvn\bin\;C:\csvn\Python25\;C:\Program Files (x86)\Common Files\ArcSoft\Bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files\jEdit;C:\Program Files\TortoiseSVN\bin;C:\Program Files\SlikSvn\bin\;C:\ant\apache-ant-1.8.1\bin;C:\Program Files (x86)\QuickTime\QTSystem\, user.language=en, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Java\x64\jdk1.6.0_27\jre\bin, classworlds.conf=E:\Eclipse_Workspaces\AHM565\.metadata\.plugins\org.maven.ide.eclipse\launches\m2conf4052422887334382567.tmp, java.version=1.6.0_27, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 30 Stepping 5, GenuineIntel, user.timezone=America/New_York, env.TEMP=C:\Users\Paul\AppData\Local\Temp, sun.arch.data.model=64, java.endorsed.dirs=C:\Java\x64\jdk1.6.0_27\jre\lib\endorsed, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=50.0, user.country=US, java.home=C:\Java\x64\jdk1.6.0_27\jre, env.APPDATA=C:\Users\Paul\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=6.1, env.=::=::\, path.separator=;, java.vm.version=20.2-b06, env.APR_ICONV1_PATH=C:\csvn\bin\iconv\, env.ASL.LOG=Destination=file, env.USERPROFILE=C:\Users\Paul, user.variant=, env.JAVA_HOME=C:\Java\x64\jdk1.6.0_27, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\Paul\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, env.PYTHONHOME=C:\csvn\Python25\, user.home=C:\Users\Paul, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, env.TNS_ADMIN=C:\Oracle\database, java.specification.vendor=Sun Microsystems Inc., env.CLASSPATH=.;C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip, env.NUMBER_OF_PROCESSORS=4, java.library.path=C:\Java\x64\jdk1.6.0_27\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\csvn\bin\;C:\csvn\Python25\;C:\Program Files (x86)\Common Files\ArcSoft\Bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files\jEdit;C:\Program Files\TortoiseSVN\bin;C:\Program Files\SlikSvn\bin\;C:\ant\apache-ant-1.8.1\bin;C:\Program Files (x86)\QuickTime\QTSystem\;., java.vendor.url=http://java.sun.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\, java.vm.vendor=Sun Microsystems Inc., maven.home=E:\Eclipse_Workspaces\AHM565\TestClient\EMBEDDED, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X -e -Dmaven.test.skip=true -s C:\Users\Paul\.m2\settings.xml install, java.class.path=/C:/Eclipse IDE/Eclipse - Helios-64/eclipse/plugins/org.maven.ide.eclipse.maven_embedder_0.12.1.20110112-1712/jars/plexus-classworlds-2.4.jar, env.PROGRAMW6432=C:\Program Files, maven.test.skip=true, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\GRETTA06, java.vm.specification.version=1.0, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, m2eclipse.workspace.state=E:\Eclipse_Workspaces\AHM565\.metadata\.plugins\org.maven.ide.eclipse\workspacestate.properties, sun.cpu.endian=little, sun.os.patch.level=Service Pack 1, env.ANT_HOME=C:\ant\apache-ant-1.8.1, env.PROCESSOR_REVISION=1e05, java.io.tmpdir=C:\Users\Paul\AppData\Local\Temp\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Java\x64\jdk1.6.0_27\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\Paul\AppData\Local, user.dir=E:\Eclipse_Workspaces\AHM565\TestClient, line.separator=

              , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.USERNAME=Paul, file.encoding=Cp1252, env.USERDOMAIN=GRETTA06, java.specification.version=1.6, env.PROCESSOR_LEVEL=6}

              [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!

              [DEBUG] resource with targetPath null

              directory E:\Eclipse_Workspaces\AHM565\TestClient\src\main\resources

              excludes []

              includes []

              [INFO] skip non existing resourceDirectory E:\Eclipse_Workspaces\AHM565\TestClient\src\main\resources

              [INFO]

              [INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ TestClient ---

              [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2:

              [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile

              [DEBUG] org.apache.maven:maven-toolchain:jar:1.0:compile

              [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile

              [DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:1.8.1:compile

              [DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1:compile

              [DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1:runtime

              [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2

              [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2

              [DEBUG] Imported: < maven.api

              [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2

              [DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2

              [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5

              [DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:1.8.1

              [DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1

              [DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1

              [DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6

              [DEBUG] Excluded: org.apache.maven:maven-toolchain:jar:1.0

              [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2, parent: sun.misc.Launcher$AppClassLoader@12360be0]

              [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile' with basic configurator -->

              [DEBUG] (f) basedir = E:\Eclipse_Workspaces\AHM565\TestClient

              [DEBUG] (f) buildDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\target

              [DEBUG] (f) classpathElements = [E:\Eclipse_Workspaces\AHM565\TestClient\target\classes, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar, C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar, C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar, C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar, C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar, C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar, C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar, C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar, C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar, C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar, C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar, C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar, C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar, C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar, C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar, C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar, C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar, C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar, C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar, C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar, C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar, C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar, C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar, C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar, C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar, C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar, C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar, C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar, C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar, C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar, C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar, C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar, C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar]

              [DEBUG] (f) compileSourceRoots = [E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java]

              [DEBUG] (f) compilerId = javac

              [DEBUG] (f) debug = true

              [DEBUG] (f) failOnError = true

              [DEBUG] (f) fork = false

              [DEBUG] (f) generatedSourcesDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\target\generated-sources\annotations

              [DEBUG] (f) optimize = false

              [DEBUG] (f) outputDirectory = E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [DEBUG] (f) outputFileName = TestClient-0.0.1-SNAPSHOT

              [DEBUG] (f) projectArtifact = com.mytest:TestClient:jar:0.0.1-SNAPSHOT

              [DEBUG] (f) session = org.apache.maven.execution.MavenSession@3b961a84

              [DEBUG] (f) showDeprecation = false

              [DEBUG] (f) showWarnings = false

              [DEBUG] (f) source = 1.5

              [DEBUG] (f) staleMillis = 0

              [DEBUG] (f) target = 1.5

              [DEBUG] (f) verbose = false

              [DEBUG] -- end configuration --

              [DEBUG] Using compiler 'javac'.

              [DEBUG] Source directories: [E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java]

              [DEBUG] Classpath: [E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar

              C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar

              C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar

              C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar

              C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar

              C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar

              C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar

              C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar

              C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar

              C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar

              C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar

              C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar

              C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar

              C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar

              C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar

              C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar

              C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar

              C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar

              C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar

              C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar

              C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar

              C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar

              C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar

              C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar

              C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar

              C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar

              C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar

              C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar

              C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar

              C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar

              C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar

              C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar

              C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar

              C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar

              C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar

              C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar

              C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar]

              [DEBUG] Output directory: E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [DEBUG] Classpath:

              [DEBUG] E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar

              [DEBUG] C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar

              [DEBUG] C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar

              [DEBUG] C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar

              [DEBUG] C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar

              [DEBUG] C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar

              [DEBUG] Source roots:

              [DEBUG] E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java

              [DEBUG] Command line options:

              [DEBUG] -d E:\Eclipse_Workspaces\AHM565\TestClient\target\classes -classpath E:\Eclipse_Workspaces\AHM565\TestClient\target\classes;C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-client\3.4.1.GA\jbossws-native-client-3.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-core\3.4.1.GA\jbossws-native-core-3.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-common\1.4.1.GA\jbossws-common-1.4.1.GA.jar;C:\Users\Paul\.m2\repository\jboss\jaxbintros\jboss-jaxb-intros\1.0.2.GA\jboss-jaxb-intros-1.0.2.GA.jar;C:\Users\Paul\.m2\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar;C:\Users\Paul\.m2\repository\junit\junit\3.8.2\junit-3.8.2.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-framework\3.4.1.GA\jbossws-framework-3.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\jbossws-spi\1.4.1.GA\jbossws-spi-1.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar;C:\Users\Paul\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar;C:\Users\Paul\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;C:\Users\Paul\.m2\repository\xml-apis\xml-apis\1.0.b2\xml-apis-1.0.b2.jar;C:\Users\Paul\.m2\repository\gnu-getopt\getopt\1.0.13\getopt-1.0.13.jar;C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\soap\jboss-saaj-api_1.3_spec\1.0.0.Final\jboss-saaj-api_1.3_spec-1.0.0.Final.jar;C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\ws\jboss-jaxws-api_2.2_spec\1.0.0.Final\jboss-jaxws-api_2.2_spec-1.0.0.Final.jar;C:\Users\Paul\.m2\repository\javax\jws\jsr181-api\1.0-MR1\jsr181-api-1.0-MR1.jar;C:\Users\Paul\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar;C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2\jaxb-impl-2.2.jar;C:\Users\Paul\.m2\repository\javax\xml\bind\jaxb-api\2.2\jaxb-api-2.2.jar;C:\Users\Paul\.m2\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar;C:\Users\Paul\.m2\repository\com\sun\xml\bind\jaxb-xjc\2.2\jaxb-xjc-2.2.jar;C:\Users\Paul\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.2\FastInfoset-1.2.2.jar;C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-rt\2.2\jaxws-rt-2.2.jar;C:\Users\Paul\.m2\repository\com\sun\xml\stream\buffer\streambuffer\1.0\streambuffer-1.0.jar;C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-asl\3.2.3\wstx-asl-3.2.3.jar;C:\Users\Paul\.m2\repository\org\jvnet\staxex\stax-ex\1.2\stax-ex-1.2.jar;C:\Users\Paul\.m2\repository\com\sun\org\apache\xml\internal\resolver\20050927\resolver-20050927.jar;C:\Users\Paul\.m2\repository\com\sun\xml\ws\policy\2.0-b01\policy-2.0-b01.jar;C:\Users\Paul\.m2\repository\com\sun\xml\txw2\txw2\20090102\txw2-20090102.jar;C:\Users\Paul\.m2\repository\com\sun\istack\istack-commons-runtime\1.1-SNAPSHOT\istack-commons-runtime-1.1-SNAPSHOT.jar;C:\Users\Paul\.m2\repository\com\sun\xml\ws\jaxws-tools\2.2\jaxws-tools-2.2.jar;C:\Users\Paul\.m2\repository\org\codehaus\jettison\jettison\1.0-RC2\jettison-1.0-RC2.jar;C:\Users\Paul\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar;C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\bind\jboss-jaxb-api_2.2_spec\1.0.0.Final\jboss-jaxb-api_2.2_spec-1.0.0.Final.jar;C:\Users\Paul\.m2\repository\javax\mail\mail\1.4.2\mail-1.4.2.jar;C:\Users\Paul\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar;C:\Users\Paul\.m2\repository\org\jboss\netty\netty\3.2.3.Final\netty-3.2.3.Final.jar;C:\Users\Paul\.m2\repository\ws-commons\policy\1.0\policy-1.0.jar;C:\Users\Paul\.m2\repository\org\codehaus\woodstox\wstx-lgpl\3.2.6\wstx-lgpl-3.2.6.jar;C:\Users\Paul\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar;C:\Users\Paul\.m2\repository\org\apache\xmlsec\1.4.3\xmlsec-1.4.3.jar;C:\Users\Paul\.m2\repository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-factories\3.4.1.GA\jbossws-native-factories-3.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\ws\native\jbossws-native-services\3.4.1.GA\jbossws-native-services-3.4.1.GA.jar;C:\Users\Paul\.m2\repository\org\jboss\spec\javax\xml\rpc\jboss-jaxrpc-api_1.1_spec\1.0.0.Final\jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar;C:\Users\Paul\.m2\repository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.0.Final\jboss-servlet-api_3.0_spec-1.0.0.Final.jar;C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-log4j\2.2.0.CR1\jboss-logging-log4j-2.2.0.CR1.jar;C:\Users\Paul\.m2\repository\log4j\log4j\1.2.15\log4j-1.2.15.jar;C:\Users\Paul\.m2\repository\javax\jms\jms\1.1\jms-1.1.jar;C:\Users\Paul\.m2\repository\org\jboss\logging\jboss-logging-spi\2.2.0.CR1\jboss-logging-spi-2.2.0.CR1.jar;C:\Users\Paul\.m2\repository\org\jboss\jboss-common-core\2.2.18.GA\jboss-common-core-2.2.18.GA.jar; -sourcepath E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java; E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestService.java E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\package-info.java E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\ObjectFactory.java E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\Hello.java E:\Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\HelloResponse.java -g -nowarn -target 1.5 -source 1.5

              [WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!

              [INFO] Compiling 6 source files to E:\Eclipse_Workspaces\AHM565\TestClient\target\classes

              [INFO] -------------------------------------------------------------

              [ERROR] COMPILATION ERROR :

              [INFO] -------------------------------------------------------------

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[46,8] cannot find symbol

              symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[54,8] cannot find symbol

              symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[62,8] cannot find symbol

              symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              location: class javax.xml.ws.Service

              [INFO] 3 errors

              [INFO] -------------------------------------------------------------

              [INFO] ------------------------------------------------------------------------

              [INFO] BUILD FAILURE

              [INFO] ------------------------------------------------------------------------

              [INFO] Total time: 2.696s

              [INFO] Finished at: Sat Sep 24 22:13:58 EDT 2011

              [INFO] Final Memory: 11M/245M

              [INFO] ------------------------------------------------------------------------

              [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project TestClient: Compilation failure: Compilation failure:

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[46,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[54,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

              [ERROR] \Eclipse_Workspaces\AHM565\TestClient\src\main\java\com\myservice\proxy\TestServiceImplService.java:[62,8] cannot find symbol

              [ERROR] symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])

              [ERROR] location: class javax.xml.ws.Service

              [ERROR] -> [Help 1]

              org.apache.maven.lifecycle.LifecycleExecutionException

               

               

              : Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project TestClient: Compilation failure

              at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213

              )

              at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153

              )

              at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145

              )

              at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84

              )

              at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59

              )

              at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183

              )

              at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161

              )

              at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319

              )

              at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156

              )

              at org.apache.maven.cli.MavenCli.execute(MavenCli.java:534

              )

              at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196

              )

              at org.apache.maven.cli.MavenCli.main(MavenCli.java:141

              )

              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method

              )

              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39

              )

              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25

              )

              at java.lang.reflect.Method.invoke(Method.java:597

              )

              at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290

              )

              at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230

              )

              at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409

              )

              at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352

              )

              Caused by: org.apache.maven.plugin.CompilationFailureException

              : Compilation failure

              at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:656

              )

              at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:128

              )

              at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:107

              )

              at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209

              )

              ... 19 more

              [ERROR]

              [ERROR]

              [ERROR] For more information about the errors and possible solutions, please read the following articles:

              [ERROR] [Help 1]

              • 4. Re: What Maven Dependencies Should I use with wsconsume?
                pbaker01

                After some reading and then rearranging of dependencies I was able to get maven to work with wsconsume.

                I found that the plugin dependencies must be configured within the plugin.  I also had left out the JBoss deprecated repository from the plugin dependencies within the settings.xml file.  So after all changes, the source were generated and compiled.  I also got it to work find with metro.

                 

                I have posted the pom file here in case someone else has a similar problem (note that the test service an client are zipped in the previous post).

                 

                JBoss AS6

                apache-maven-3.0.3

                 

                <?xml version="1.0" encoding="UTF-8"?>
                <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
                 <modelVersion>4.0.0</modelVersion>
                 <groupId>com.mytest</groupId>
                 <artifactId>TestClient</artifactId>
                 <version>0.0.1-SNAPSHOT</version>
                 <packaging>war</packaging>
                 <build>
                  <pluginManagement />
                  <plugins>
                   <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1.1</version>
                    <configuration>
                     <warSourceDirectory>WebContent</warSourceDirectory>
                     <webXml>WebContent/WEB-INF/web.xml</webXml>
                    </configuration>
                   </plugin>
                 
                   <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>jboss-maven-plugin</artifactId>
                    <version>1.5.0</version>
                    <configuration>
                     <jbossHome>C:\JBoss\jboss-6.0.0.Final\</jbossHome>
                     <serverName>default</serverName>
                     <fileName>${project.basedir}/target/${project.build.finalName}.war</fileName>
                    </configuration>
                   </plugin>
                 
                   <plugin>
                    <groupId>org.jboss.ws.plugins</groupId>
                    <artifactId>maven-jaxws-tools-plugin</artifactId>
                    <version>1.0.0.GA</version>
                    <executions>
                     <execution>
                      <id>MyService</id>
                      <goals>
                       <goal>wsconsume</goal>
                      </goals>
                      <configuration>
                       <wsdls>
                        <wsdl>http://localhost:8080/TestService?wsdl</wsdl>
                       </wsdls>
                       <targetPackage>com.myservice.proxy</targetPackage>
                       <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
                       <extension>true</extension>
                       <verbose>true</verbose>
                       <goalPrefix>wsconsume</goalPrefix>
                      </configuration>
                     </execution>
                    </executions>
                    <dependencies>
                 
                     <dependency>
                      <groupId>org.jboss.ws.native</groupId>
                      <artifactId>jbossws-native-client</artifactId>
                      <version>3.2.1.GA</version>
                      <type>jar</type>
                      <scope>compile</scope>
                     </dependency>
                 
                     <dependency>
                      <groupId>javax.xml.ws</groupId>
                      <artifactId>jaxws-api</artifactId>
                      <version>2.2.1</version>
                      <type>jar</type>
                      <scope>compile</scope>
                     </dependency>
                 
                     <dependency>
                      <groupId>org.jboss.ws</groupId>
                      <artifactId>jbossws-spi</artifactId>
                      <version>1.4.1.GA</version>
                      <type>jar</type>
                      <scope>compile</scope>
                     </dependency>
                 
                    </dependencies>
                   </plugin>
                 
                   <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.2</version>
                    <configuration>
                     <verbose>true</verbose>
                     <fork>true</fork>
                     <executable>C:/Java/x64/jdk1.6.0_27/bin/javac</executable>
                     <!--  executable>C:/Java/x64/jdk1.5.0_22/bin/javac</executable  -->
                     <compilerVersion>1.6</compilerVersion>
                     <source>1.6</source>
                     <target>1.6</target>
                    </configuration>
                   </plugin>
                  </plugins>
                 </build>
                 
                 <dependencies>
                 
                  <dependency>
                   <groupId>org.jboss.jbossas</groupId>
                   <artifactId>jboss-as-client</artifactId>
                   <version>6.1.0.Final</version>
                   <type>pom</type>
                   <scope>provided</scope>
                  </dependency>
                 
                 </dependencies>
                </project>
                
                • 5. Re: What Maven Dependencies Should I use with wsconsume?
                  stevecoh4

                  Thanks for your workaround.

                   

                  I am trying to do the same thing only with jboss-as 5.1.  But your solution is not working for me.

                   

                  The error is Failure to find com.sun.istack:istack-commons-runtime:jar:1.1

                   

                  Indeed, if I look at https://repository.jboss.org/nexus/content/repositories/deprecated/com/sun/ or

                  https://repository.jboss.org/nexus/content/groups/public-jboss/com/sun/ I do not see an istack directory.  So I am wondering how this works for you.

                   

                  This seems to shed some light on the subject:

                   

                  http://stackoverflow.com/questions/3705369/missing-maven-dependency-using-nexus-setup

                  The istack stuff is in the java net repo, not the deprecated maven one.  But only the SNAPSHOT version is available, not the 1.1 release.  This is getting worse and worse.

                   

                  I still don't know what to do to get it working.

                   

                  Incidentally, even if this were working for me, isn't it a bug to have this plugin rely on a deprecated repository?

                  • 6. Re: What Maven Dependencies Should I use with wsconsume?
                    stevecoh4

                    Yeechh!  What a @#$%^&ing mess.

                    I didn't have the jboss-as-client "provided" dependency so I added that.  It downloaded every possible thing jboss, which seems to have solved my itrack problem but now I have more unresolved dependencies.

                     

                    Seriously, is the jboss team ever going to make a version of wsconsume that doesn't rely on deprecated repositories?

                    • 7. Re: What Maven Dependencies Should I use with wsconsume?
                      pbaker01

                      Hi Steve, 

                      I appreciate your frustration.. I spent many hours on this too.

                      Does your settings.xml have both repositories:

                       

                      Set for <repositories> and <pluginRepositories>.  The example I provided above did not have the deprecated repository included for pluginRepositories.

                       

                      Also start with a simple example like the one that I attached above.. For the purpose of generating the client code.. In general, it should not make a difference what server version that you are actually deploying on...  For me the objective was to A) Generate the client code.. B) Compile and Deploy to AS 6.   The dependency

                       

                      <dependency>
                         <groupId>org.jboss.jbossas</groupId>
                         <artifactId>jboss-as-client</artifactId>
                         <version>6.1.0.Final</version>
                         <type>pom</type>
                         <scope>provided</scope>
                        </dependency>

                       

                      That I used in the example was for the compile and deployment... not for the client code generation... The client code is generated fine without this..

                       

                      Are you able to generate the client code?

                       

                      Good luck... You will get it... It does work.. ...

                      • 8. Re: What Maven Dependencies Should I use with wsconsume?
                        stevecoh4

                        Thank you thank you thank you for providing me with the motivation to continue and not throw my computer out the window!

                         

                        Couple of things I learned that I was doing different from your setup that were critical.

                         

                        <groupId>org.jboss.ws.plugins</groupId>    

                        <artifactId>maven-jaxws-tools-plugin</artifactId>    

                        <version>1.0.0.GA</version>

                        is critical.  1.0.1.GA is no good even though it can be found in the repos.

                         

                        <groupId>org.jboss.ws</groupId>      

                        <artifactId>jbossws-spi</artifactId>      

                        <version>1.4.1.GA</version>

                        is also critical.  Somehow, I had found

                         

                        <groupId>jboss</groupId>

                        <artifactId>jbossws-spi</artifactId>

                        <version>1.0.0.GA</version>

                         

                        instead.  This also is no good.

                         

                        But it works, or at least, it generates code.

                         

                        Yippee!

                         

                         


                        • 9. Re: What Maven Dependencies Should I use with wsconsume?
                          stevecoh4

                          I have some additional questions for you, Paul, if you don't mind, about setting up wsconsume.  I notice that you have the following in your plugin config:

                           

                                 <wsdls>
                                  <wsdl>http://localhost:8080/TestService?wsdl</wsdl>
                                 </wsdls>

                           

                          I think this means that you need to be running the server in order to generate the code?

                           

                          In my pom.xml I have this:

                           

                           

                                 <wsdls>
                                 
                          <wsdl>${basedir}/src/main/web-resources/META-INF/jaxws/wsdl/TestService.wsdl</wsdl>
                                 </wsdls>

                           

                           

                          (why does this silly editor insist on putting my pastes in an HTML table?????)

                           

                          This allows the codegen to work, although it encodes the location of the file, which probably isn't good.

                           

                          How is this supposed to work?

                           

                          Also, what is the RIGHT place in a maven web service projects to put WSDL source?  I'm sure where I have it is NOTthe right place.

                          • 10. Re: What Maven Dependencies Should I use with wsconsume?
                            pbaker01

                            Hi Steve,

                             

                            <wsdls>
                                    <wsdl>http://localhost:8080/TestService?wsdl</wsdl>
                                   </wsdls>

                             

                            I think this means that you need to be running the server in order to generate the code?

                             

                            Yes, this is because I am being lazy and using a contract last or bottom up approach for defining the service interface.. I deploy the service to JBoss and let it do the work of creating the wsdl (and other pieces i.e. xsds).  I suppose you could save the wsdl it if you wanted to but during development you are probably going through a cycle of change service, deploy, generate client service proxy stubs, change client, deploy test... At least that is the overall cycle that I follow..  So why save it..

                             

                            The basic tutorial on webservice design can be found here: http://download.oracle.com/javaee/6/tutorial/doc/bnayn.html#bnayr

                            and I am following the same approach...

                             

                            Also, what is the RIGHT place in a maven web service projects to put WSDL source?  I'm sure where I have it is NOTthe right place.

                             

                            The "RIGHT" place is going to be subjective... For me, it would be in a seperate project that just contained service contract artifacts: wsdls, schemas, and, policies.  In a large project you are going to probably go with a contract first design for your service interfaces and seperate the key contract artifacts out so that you get some reusability - at least from your xsds.  Plus you make sure that your service stuff is 100% decoupled from the client stufff. To take a deep dive into contract first -  consider reading the bible (if you have not already): Thomas Erl, Web Service Contract Design & Versioning for SOA.  If you were going to save the wsdl.. then src/main/resources/....  or something like that.. - but you are not going to deploy the wsdl if you are using contact last..

                             

                            Good luck with your project...

                            • 11. Re: What Maven Dependencies Should I use with wsconsume?
                              whitingjr

                              Hi Paul,

                              I tried following your instructions. Sadly I think the depreciated repo has been cleaned up. I can not find any longer the maven-jaxws-tools-plugin. Either in the depreciated or public repo.

                               

                              Do you agree it has been deleted ?

                               

                              Regards,

                              Jeremy

                              • 12. Re: What Maven Dependencies Should I use with wsconsume?
                                pbaker01

                                Hi Jeremy,

                                 

                                I am using wsdl2java now... I also had some troubles with wsconsume...

                                cxf.version = 2.5.1

                                 

                                I don't have any issues now...

                                 

                                <plugin>
                                <groupId>org.apache.cxf</groupId>
                                <artifactId>cxf-codegen-plugin</artifactId>
                                <version>${cxf.version}</version>
                                <executions>
                                  <execution>
                                   <id>generate-sources</id>
                                   <phase>generate-sources</phase>
                                   <configuration>
                                    <sourceRoot>${project.basedir}/src/main/java</sourceRoot>
                                    <wsdlOptions>
                                     <wsdlOption>
                                      <wsdl>${project.basedir}/WebContent/WEB-INF/wsdl/widgitmanager/WidgitManager.wsdl</wsdl>
                                     </wsdlOption>
                                    </wsdlOptions>
                                   </configuration>
                                   <goals>
                                    <goal>wsdl2java</goal>
                                   </goals>
                                  </execution>
                                </executions>
                                <dependencies>
                                  <dependency>
                                   <groupId>xerces</groupId>
                                   <artifactId>xercesImpl</artifactId>
                                   <version>2.8.1</version>
                                  </dependency>
                                </dependencies>
                                <inherited>true</inherited>
                                </plugin>
                                

                                 

                                Paul

                                • 13. Re: What Maven Dependencies Should I use with wsconsume?
                                  whitingjr

                                  Hi,

                                  I have now have a working configuration to get maven-jaxws-tools-plugin working. I found the plugin, which is contrary to my earlier comment. As of 02 Feb 2012 It is located here

                                   

                                  http://repository.jboss.org/maven2/org/jboss/ws/plugins/maven-jaxws-tools-plugin/

                                   

                                  and it needs to be added as a plugin repository in your settings.xml. This is the configuration I have.

                                   

                                  <pluginRepository>

                                     <id>jboss-plugins</id>

                                     <url>http://repository.jboss.com/maven2</url>

                                     <releases>

                                        <enabled>true</enabled>

                                     </releases>

                                     <snapshots>

                                        <enabled>false</enabled>

                                     </snapshots>

                                  </pluginRepository>

                                   

                                  First of all it should be pointed out my module assumes no installation of JBoss AS or EAP is on the system. So Maven has to resolve all the dependencies using artifacts in the repositories to execute wsconsume.

                                   

                                  It appears (I could be wrong) the maven-jaxws-tools-plugin plugin does not include all the required dependencies in it's pom.xml. One additional dependency requires adding to the plugin.

                                   

                                  This is my pom.xml.

                                   

                                  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

                                     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

                                     <modelVersion>4.0.0</modelVersion>

                                     <groupId>org.jboss.perf.test</groupId>

                                     <artifactId>envEntryLookupClient</artifactId>

                                     <version>0.0.1-SNAPSHOT</version>

                                     <packaging>jar</packaging>

                                   

                                     <properties>

                                        <!-- Explicitly declaring the source encoding eliminates the following

                                           message: -->

                                        <!-- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered

                                           resources, i.e. build is platform dependent! -->

                                        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

                                     </properties>

                                   

                                     <build>

                                        <finalName>${project.artifactId}</finalName>

                                        <plugins>

                                           <!-- Compiler plugin enforces Java 1.6 compatibility and activates

                                              annotation processors -->

                                           <plugin>

                                              <artifactId>maven-compiler-plugin</artifactId>

                                              <version>2.3.2</version>

                                              <configuration>

                                                 <source>1.5</source>

                                                 <target>1.5</target>

                                                 <verbose>true</verbose>

                                              </configuration>

                                           </plugin>

                                           <plugin>

                                              <groupId>org.jboss.ws.plugins</groupId>

                                              <artifactId>maven-jaxws-tools-plugin</artifactId>

                                              <version>1.0.0.GA</version>

                                              <configuration>

                                                 <wsdls>

                                                    <wsdl>src/main/resources/StaticService.wsdl</wsdl>

                                                 </wsdls>

                                                 <targetPackage>org.jboss.performance.jndi.test.client</targetPackage>

                                                 <sourceDirectory>src/main/java</sourceDirectory>

                                                 <extension>true</extension>

                                                 <verbose>true</verbose>

                                              </configuration>

                                              <dependencies>

                                                 <dependency>

                                                    <groupId>org.jboss.ws.native</groupId>

                                                    <artifactId>jbossws-native-core</artifactId>

                                                    <version>3.2.2.GA</version>

                                                 </dependency>

                                              </dependencies>

                                              <executions>

                                                 <execution>

                                                    <goals>

                                                       <goal>wsconsume</goal>

                                                    </goals>

                                                 </execution>

                                              </executions>

                                           </plugin>

                                        </plugins>

                                     </build>

                                   

                                     <dependencies>

                                        <dependency>

                                           <groupId>org.jboss.spec.javax.xml.ws</groupId>

                                           <artifactId>jboss-jaxws-api_2.2_spec</artifactId>

                                           <version>2.0.0.Final</version>

                                           <scope>provided</scope>

                                        </dependency>

                                     </dependencies>

                                  </project>

                                   

                                  Notice the jbossws-native-core plugin dependecy. That includes org.jboss.ws.tools.jaxws.impl.SunRIConsumerFactoryImpl which is missing from dependencies in

                                   

                                  http://repository.jboss.org/maven2/org/jboss/ws/plugins/maven-jaxws-tools-plugin/1.0.0.GA/maven-jaxws-tools-plugin-1.0.0.GA.pom

                                   

                                   

                                  I hope you find this useful.

                                   

                                  Regards,

                                  Jeremy