OPENEJB-1298 Update the jaxb tree to model the ee 6 schemas

2010-09-29 Thread Jean-Louis MONTEIRO
Hi David J. and all, I did some changes to the Jaxb tree regarding JPA 2.0 support. Yet, i fulfill PersistenceXmlTest test case in order to marshall/unmarshall JPA 2.0 persistence.xml files. We also have a tree for orm.xml files. As far as I know, it's only used for CMP beans (internally).

Re: Jetty Integration

2010-09-29 Thread Jonathan Gallimore
Hi Jean-Louis, I've been doing some work on integration with Jetty 7. I currently have Jetty and OpenEJB working together in a unit test in the openejb-jetty-common module, and this is running one of example war files. I've got a fair bit of stuff working - I think most of the JNDI wiring is

trimming whitespace in xml with jaxb

2010-09-29 Thread David Jencks
I think that most javaee schema string element content is supposed to have whitespace trimmed off before trying to interpret it, and I think that jaxb doesn't do that by default unless you specify a suitable XmlJavaTypeAdapter. A few fields in our jee tree use the CollapsedStringAdapter but

Re: OPENEJB-1257

2010-09-29 Thread Matthias Wessendorf
On Mon, Sep 27, 2010 at 6:49 PM, David Blevins david.blev...@visi.com wrote: On Sep 27, 2010, at 5:21 PM, Matthias Wessendorf wrote: Hey David, On Sun, Sep 26, 2010 at 8:33 PM, David Blevins david.blev...@visi.com wrote: On Sep 25, 2010, at 7:03 PM, Matthias Wessendorf wrote: Hi guys,

Re: trimming whitespace in xml with jaxb

2010-09-29 Thread Ivan
Agree to have a trim adapter, actually, most fields should be trimmed. While looking at the web deployment codes in Geronimo, too many trim() methods are invoked on those web elements, e.g. servlet-class. http-method ... 2010/9/30 David Jencks david_jen...@yahoo.com I think that most javaee