I narrowed it down to a change in the xml-api.jar from JBoss AS 4.0.2 to 4.0.3RC2. It resides under /server/lib/endorsed. If you swap that out with the one from 4.0.2 it creates the directory, but that is not a valid option. It is a cange from
I debugged the jackrabbit code and it fails here: | transformer.transform(new DOMSource(template), new StreamResult(xml)); | The passing in of a file object (xml) here seems to be the incompatibility. Also, I found a forum post that may apply, so we're not the only ones with this problem it seems: http://forum.java.sun.com/thread.jspa?forumID=34&threadID=563077 The suggested fix for jackrabbit would have to be not passing in the file object to the StreamResult constructor, but creating it with the directory names. I will try this in their code and see if it works with the test classes first. Also, I found a similar bug, that applies: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5077403 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3896927#3896927 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3896927 ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
