<!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;">&#160;</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;">&#160;</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;">&#160;</p><p>&#160; 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;">&#160;</p><p>This is my pom.xml.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span>&lt;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>&#160;&#160; 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>"&gt;</span></p><p>&#160;&#160; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;</p><p>&#160;&#160; &lt;groupId&gt;org.jboss.perf.test&lt;/groupId&gt;</p><p>&#160;&#160; &lt;artifactId&gt;envEntryLookupClient&lt;/artifactId&gt;</p><p>&#160;&#160; &lt;version&gt;0.0.1-SNAPSHOT&lt;/version&gt;</p><p>&#160;&#160; &lt;packaging&gt;jar&lt;/packaging&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;properties&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;</p><p>&#160;&#160; &lt;/properties&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;build&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;finalName&gt;${project.artifactId}&lt;/finalName&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;plugins&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!-- Compiler plugin enforces Java 1.6 compatibility and activates </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; annotation processors --&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;plugin&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;2.3.2&lt;/version&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;configuration&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;source&gt;1.5&lt;/source&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;target&gt;1.5&lt;/target&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/configuration&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/plugin&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;plugin&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;groupId&gt;org.jboss.ws.plugins&lt;/groupId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;maven-jaxws-tools-plugin&lt;/artifactId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;1.1.0.GA&lt;/version&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;configuration&gt;</p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;wsdlLocation&gt;</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>&lt;/wsdlLocation&gt;</span></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;wsdls&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;wsdl&gt;${basedir}/src/main/resources/StaticService.wsdl&lt;/wsdl&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/wsdls&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetPackage&gt;org.jboss.performance.jndi.test.client&lt;/targetPackage&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;sourceDirectory&gt;src/main/java&lt;/sourceDirectory&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;extension&gt;true&lt;/extension&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;verbose&gt;true&lt;/verbose&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/configuration&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/plugin&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/plugins&gt;</p><p>&#160;&#160; &lt;/build&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;dependencies&gt;</p><p>...</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dependency&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;groupId&gt;org.jboss.spec.javax.xml.ws&lt;/groupId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;jboss-jaxws-api_2.2_spec&lt;/artifactId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;2.0.0.Final&lt;/version&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;scope&gt;provided&lt;/scope&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dependency&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dependency&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;groupId&gt;org.jboss.ws.cxf&lt;/groupId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;jbossws-cxf-client&lt;/artifactId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;4.0.0.GA&lt;/version&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;scope&gt;provided&lt;/scope&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;/dependency&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;dependency&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;groupId&gt;org.jboss.ws&lt;/groupId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;jbossws-api&lt;/artifactId&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;1.0.0.GA&lt;/version&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;scope&gt;provided&lt;/scope&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; &lt;/dependency&gt;</p><p>&#160;&#160; &lt;/dependencies&gt;</p><p>&lt;/project&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>maven console output </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>$ mvn clean compile -DskipTests</p><p>[INFO] Scanning for projects...</p><p>[INFO]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </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;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The wsdl is located here </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>./src/main/resources:</p><p>StaticService.wsdl</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</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;">&#160;</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>