My problem from yesterday is say sorted. Not solved though.
The NPE I had was triggered by a FileNotFoundException that was hidden until I switched to TRACE logging (org.jboss.util.xml.JBossEntityResolver)...
So here is the thing:
1.) I'm trying to connect to the webservice from code that is deployed to under JBoss
2.) JBossWs saves the wsdl to the tmp folder like this:
file:/home/xxx/dev/XXXX/jboss-4.2.3.GA/server/yyy/tmp/jbossws/JBossWS_www.company.xx_99_server_soap.php?wsdl=get8489235369016302536.xsd
3.) And then when it tries to read back the WSDL:
TRACE [org.jboss.util.xml.JBossEntityResolver] Failed to obtain URL.InputStream from systemId: file:/home/xxx/dev/xxx-PAN/jboss-4.2.3.GA/server/xxxxxxx/tmp/jbossws/JBossWS_www.comany.xx_99_server_soap.php?wsdl=get8489235369016302536.xsd
java.io.FileNotFoundException: /home/xxx/dev/xxx-PAN/jboss-4.2.3.GA/server/xxxxxxx/tmp/jbossws/JBossWS_www.comany.xx_99_server_soap.php
Obviously it truncates and then not able to read back.
I guess I would be able to configure somehow the pattern how it writes it to disk or how it reads it back but I did find the solution (even not from the code of the JBoss class I mentioned). Any ideas would be appreciated.
Edit:
I created a simple test application on the Linux server pointing to the same file containing the following code:
URL url = new URL("file:/home/abos/xxx/xxxx/jboss-4.2.3.GA/server/xxxxxxx/tmp/jbossws/JBossWS_www.company.xx_99_server_soap.php?wsdl=get8489235369016302536.xsd");
url.openStream();
Exception in thread "main" java.io.FileNotFoundException: /home/xxx/dev/xxxx/jboss-4.2.3.GA/server/anchorage/tmp/jbossws/JBossWS_www.bdmglobal.xx_99_server_soap.php (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:120)
at java.io.FileInputStream.<init>(FileInputStream.java:79)
at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
at java.net.URL.openStream(URL.java:1010)
at Main.main(Main.java:11)
So here are my conclusions:
1.) Actually it is the URL class that truncates the name
2.) But if it was saved properly it would not be a problem.
So I'm still looking for a way to configure that.