<!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="http://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;">
    Re: NullPointerException in JBossXSEntityResolver.getXMLInputSource still happening in 5.1.0
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mkapanadze">Mikheil Kapanadze</a> in <i>JBoss Web Services</i> - <a href="http://community.jboss.org/message/608002#608002">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>I had this error today, but on older JBoss (4.2.3). WSDL was a bit complex but not wrong (it was auto-generated from EJB, deployed on JBoss 5.1.0 - both wsimport and wsconsume were OK with it.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I'll describe how I have fixed it for myself. Maybe it will be helpful for anyone.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I had to create web service client and add to some application, deployed on 4.2.3. I've generated classes using wsimport and created the client. After that, I got the above mentioned error.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>As everyone knows, when you generate JAX-WS classes, wsimport uses absolute path of the filename in the ***Service.java. It looks like this:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span>@WebServiceClient(name = "MyService", targetNamespace = "</span><a class="jive-link-external-small" href="http://www.example.com/NS/my-NS" target="_blank">http://www.example.com/NS/my-NS</a><span>", wsdlLocation = "file:/D:/path/to/wsdl/Service.wsdl")</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>and the same path exists after few lines, in static initialization block.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>When you deploy the application on the server, in most cases the pathname will be incorrect. To avoid this, I often place my .wsdl files in the package and create service class using MyService(URL wsdlLocation, QName serviceName) constructor but today it caused NPE for me. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I have tried to make above mentioned static initialization block and @WebServiceClient annotation little bit usable. Here are steps:</p><ol><li style="text-align: start;">Choose name of your package where wsimport will place generated classes. Say, com.mikheil.demo.ws.client</li><li style="text-align: start;">Put your WSDL in classpath, inside the SAME package. Let's suppose it's name is MyService.wsdl</li><li style="text-align: start;">When executing wsimport, pass<strong> -wsdllocation MyService.wsdl</strong> to it</li></ol><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I use Maven and plugin parameter there is wsdlLocation</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>So, here is how my service looks like:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span>@WebServiceClient(name = "MyService", targetNamespace = "</span><a class="jive-link-external-small" href="http://www.example.com/NS/my-NS" target="_blank">http://www.example.com/NS/my-NS</a><span>", wsdlLocation = "MyService.wsdl")</span></p><p>public class MyService</p><p>&#160;&#160;&#160; extends Service</p><p>{</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; private final static URL MYSERVICE_WSDL_LOCATION;</p><p>&#160;&#160;&#160; private final static Logger logger = Logger.getLogger(com.mikheil.demo.ws.client.MyService.class.getName());</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; static {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; URL url = null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; try {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; URL baseUrl;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; baseUrl = com.mikheil.demo.ws.client.MyService.class.getResource(".");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url = new URL(baseUrl, "MyService.wsdl");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; } catch (MalformedURLException e) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.warning("Failed to create URL for the wsdl Location: 'MyService.wsdl', retrying as a local file");</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.warning(e.getMessage());</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; URL MYSERVICE_WSDL_LOCATION; = url;</p><p>&#160;&#160;&#160; }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>// Some constructors, etc</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Obviously, now it's possible to create web service client using default constructor. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>...And, NullPointerException disappeared too!</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/608002#608002">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Web Services at <a href="http://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>