Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Todd Sowers
Thanks - This worked perfect. The issue we now encounter is the Google Contact API is not returning any data. We believe this is because the Google Contacts API needs javax.xml.parsers.SAXParserFactory and we have defaulted the parser (to fix the previous Hibernate issue) to

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Rob Lockstone
Have you tried using the Apache Xerces parser? There are definitely differences and assumptions that people make, often unknowingly, when crafting XML that result in the XML only being parseable by the parser they themselves are using. Anyway, that's what I would try. If that doesn't work,

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Todd Sowers
Rob - Yes we have tried using the Apache Xerces parser and it doesn't work The only time the Google API returns records is when we do not include the following: server ... !-- Requires Apache's xerces.jar and xml-apis.jar libraries. -- system-property javax .xml .parsers

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Rob Lockstone
What Google API requests are resulting in errors? And what are the errors? Rob On Jan 16, 2009, at 10:13, Todd Sowers wrote: Rob - Yes we have tried using the Apache Xerces parser and it doesn't work The only time the Google API returns records is when we do not include the following:

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Todd Sowers
Rob - There are no errors. When we call the function, we ask it to return the result set count. In our case it should be 37. However it returns 0. The API we are using is the Google Contacts Data API (http://code.google.com/apis/contacts/docs/2.0/developers_guide_java.html ) This

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-16 Thread Rob Lockstone
I don't have time to look at it now, but will this weekend if you don't figure it out. Rob On Jan 16, 2009, at 12:36, Todd Sowers wrote: Rob - There are no errors. When we call the function, we ask it to return the result set count. In our case it should be 37. However it returns

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-15 Thread Scott Ferguson
On Jan 15, 2009, at 3:59 PM, Todd Sowers wrote: Hello - We are in the process of upgrading from Resin 3.0.22 to Resin 3.1.8. In our 3.0.22 environment Hibernate is working without issue. With the upgrade to 3.1.8 we are experiencing the following issue that we know of. The mapping files

Re: [Resin-interest] Hybernate Resin 3.1.8

2009-01-15 Thread Rob Lockstone
On Jan 15, 2009, at 16:12, Scott Ferguson wrote: On Jan 15, 2009, at 3:59 PM, Todd Sowers wrote: Hello - We are in the process of upgrading from Resin 3.0.22 to Resin 3.1.8. In our 3.0.22 environment Hibernate is working without issue. With the upgrade to 3.1.8 we are experiencing the