<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">
<div>
<table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
<tbody>
<tr>
<td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
<h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
<!-- To have a header image/logo replace the name below with your img tag -->
<!-- Email clients will render the images when the message is read so any image -->
<!-- must be made available on a public server, so that all recipients can load the image. -->
<a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
Using relative wsdl location and maven-jaxws-tools-plugin.
</h3>
<span style="margin-bottom: 10px;">
created by <a href="https://community.jboss.org/people/whitingjr">Jeremy Whiting</a> in <i>JBoss Web Services</i> - <a href="https://community.jboss.org/message/714252#714252">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">
<div class="jive-rendered-content"><p>Hi,</p><p> I am having difficulty creating a ws client api using a wsdl. My mavenised project is using the maven-jaxws-tools-plugin plugin version 1.1.0.GA.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p> Your example on the Wiki indicates the user can declare a relative wsdl location in the module.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><a class="jive-link-external-small" href="https://community.jboss.org/docs/DOC-13542#Examples_168533" target="_blank">https://community.jboss.org/wiki/JBossWS-Wsconsume#Examples_168533</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>  I have tested it with a HTTP url and that works. But that option needs a running AS7 to provide the response.</p><p> Instead I want to use a relative path. Which should work. Given the example provided earlier. But my maven console shows no java classes are generated or saved in the source directory.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>This is my pom.xml.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><span><project xmlns="</span><a class="jive-link-external-small" href="http://maven.apache.org/POM/4.0.0" target="_blank">http://maven.apache.org/POM/4.0.0</a><span>" xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"</span></p><p><span>   xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://maven.apache.org/POM/4.0.0" target="_blank">http://maven.apache.org/POM/4.0.0</a><span> </span><a class="jive-link-external-small" href="http://maven.apache.org/xsd/maven-4.0.0.xsd" target="_blank">http://maven.apache.org/xsd/maven-4.0.0.xsd</a><span>"></span></p><p>   <modelVersion>4.0.0</modelVersion></p><p>   <groupId>org.jboss.perf.test</groupId></p><p>   <artifactId>envEntryLookupClient</artifactId></p><p>   <version>0.0.1-SNAPSHOT</version></p><p>   <packaging>jar</packaging></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>   <properties></p><p>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></p><p>   </properties></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>   <build></p><p>      <finalName>${project.artifactId}</finalName></p><p>      <plugins></p><p>         <!-- Compiler plugin enforces Java 1.6 compatibility and activates </p><p>            annotation processors --></p><p>         <plugin></p><p>            <artifactId>maven-compiler-plugin</artifactId></p><p>            <version>2.3.2</version></p><p>            <configuration></p><p>               <source>1.5</source></p><p>               <target>1.5</target></p><p>            </configuration></p><p>         </plugin></p><p>         <plugin></p><p>            <groupId>org.jboss.ws.plugins</groupId></p><p>            <artifactId>maven-jaxws-tools-plugin</artifactId></p><p>            <version>1.1.0.GA</version></p><p>            <configuration></p><p><span>               <wsdlLocation></span><a class="jive-link-external-small" href="http://burtha02-wireless:8080/envEntryEmulatorSampleWeb/StaticService?wsdl" target="_blank">http://burtha02-wireless:8080/envEntryEmulatorSampleWeb/StaticService?wsdl</a><span></wsdlLocation></span></p><p>               <wsdls></p><p>                  <wsdl>${basedir}/src/main/resources/StaticService.wsdl</wsdl></p><p>               </wsdls></p><p>               <targetPackage>org.jboss.performance.jndi.test.client</targetPackage></p><p>               <sourceDirectory>src/main/java</sourceDirectory></p><p>               <extension>true</extension></p><p>               <verbose>true</verbose></p><p>            </configuration></p><p>         </plugin></p><p>      </plugins></p><p>   </build></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>   <dependencies></p><p>...</p><p>      <dependency></p><p>         <groupId>org.jboss.spec.javax.xml.ws</groupId></p><p>         <artifactId>jboss-jaxws-api_2.2_spec</artifactId></p><p>         <version>2.0.0.Final</version></p><p>         <scope>provided</scope></p><p>      </dependency></p><p>      <dependency></p><p>          <groupId>org.jboss.ws.cxf</groupId></p><p>          <artifactId>jbossws-cxf-client</artifactId></p><p>          <version>4.0.0.GA</version></p><p>          <scope>provided</scope></p><p>       </dependency></p><p>       <dependency></p><p>          <groupId>org.jboss.ws</groupId></p><p>          <artifactId>jbossws-api</artifactId></p><p>          <version>1.0.0.GA</version></p><p>          <scope>provided</scope></p><p>       </dependency></p><p>   </dependencies></p><p></project></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>maven console output </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>$ mvn clean compile -DskipTests</p><p>[INFO] Scanning for projects...</p><p>[INFO]                                                                         </p><p>[INFO] ------------------------------------------------------------------------</p><p>[INFO] Building envEntryLookupClient 0.0.1-SNAPSHOT</p><p>[INFO] ------------------------------------------------------------------------</p><p>[INFO] </p><p>[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ envEntryLookupClient ---</p><p>[INFO] Deleting ..../envEntryLookupClient/target</p><p>[INFO] </p><p>[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ envEntryLookupClient ---</p><p>[INFO] Using 'UTF-8' encoding to copy filtered resources.</p><p>[INFO] Copying 1 resource</p><p>[INFO] </p><p>[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ envEntryLookupClient ---</p><p>[INFO] Compiling 1 source file to ...../envEntryLookupClient/target/classes</p><p>[INFO] ------------------------------------------------------------------------</p><p>[INFO] BUILD SUCCESS</p><p>[INFO] ------------------------------------------------------------------------</p><p>[INFO] Total time: 4.815s</p><p>[INFO] Finished at: Fri Feb 03 10:52:06 GMT 2012</p><p>[INFO] Final Memory: 20M/162M</p><p>[INFO] ------------------------------------------------------------------------</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>The wsdl is located here </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>./src/main/resources:</p><p>StaticService.wsdl</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p> Is there something else I should be doing with the plugin configuration to get this working with the plugin ?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Regards,</p><p>Jeremy</p></div>
<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
<p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/714252#714252">going to Community</a></p>
<p style="margin: 0;">Start a new discussion in JBoss Web Services at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2044">Community</a></p>
</div></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>