Re: Getting jaxws:server syntax working for spring transaction proxying

2007-08-06 Thread Jeremy Isikoff
syntax working for spring transaction proxying Hi Jeremy, I think that serviceBean=transDataService should actually be: implementor=#transDataService -Chris -Original Message- From: Jeremy Isikoff [mailto:[EMAIL PROTECTED] Sent: Friday, August 03, 2007 11:17 PM To: cxf-user

cxf-spring-transactions anybody get it working?

2007-08-06 Thread Jeremy Isikoff
sorry to ask again but did anybody get either of those fixes for the spring transactions working on an jaxws:endpoint or jaxws:server? Jeremy Isikoff Got a little couch potato? Check out fun summer

Getting jaxws:server syntax working for spring transaction proxying

2007-08-03 Thread Jeremy Isikoff
I know dan did a post on this but I still haven't been able to get this working, the syntax he specified in his post didnt match the schema, when I looked in the schema it looked like you were supposed to put the implementing bean in the servicebean class but it doesnt seem to work. It doesnt

is it normal not to find the cxf.xml file on the classpath? how do I fix this?

2007-07-31 Thread Jeremy Isikoff
i get this INFO message everytime i deploy to tomcat but everything seems to work: org.apache.cxf.bus.spring.BusApplicationContext getConfigResources INFO: Could not find the configuration file cxf.xml on the classpath I've been ignoring it so far but it seems like it shouldn't be doing this?

Good way to return a RowSet from a service?

2007-07-31 Thread Jeremy Isikoff
Hi all, I'm trying to return a RowSet (data and schema info) from a cxf webservice. I tried returning instances of CachedRowSetImpl or WebRowSetImpl directly but they both cause stack overflows when deploying to tomcat. Is there some better way to do this or do I have write my own class?

Re: Returning Generic Lists Properly Typed?

2007-07-29 Thread Jeremy Isikoff
@incubator.apache.org Cc: Jeremy Isikoff [EMAIL PROTECTED] Sent: Sunday, July 29, 2007 8:27:02 AM Subject: Re: Returning Generic Lists Properly Typed? On Sunday 29 July 2007 01:29, Jeremy Isikoff wrote: I'm using the 2.0 release and JAXB. I'd try the 2.1 if that fixes it but im not good enough

Re: webservice proxied with trasaction interceptor throwing errors on WSDL generation

2007-07-28 Thread Jeremy Isikoff
, I'm using the OpenSessionInViewFilter instead of the interceptor. On 7/28/07, Jeremy Isikoff [EMAIL PROTECTED] wrote: Well I got reads with spring-hibernate-cxf working but when I went to save in turned out that the opensessioninview interceptor leaves the session in flushmode.never which

errors using HibernateDAOSupport and JAXB

2007-07-27 Thread Jeremy Isikoff
. org.springframework.jdbc.support.SQLExceptionTranslator is an interface, and JAXB can't handle interfaces. org.hibernate.SessionFactory is an interface, and JAXB can't handle interfaces. i saw a thread that said I should switch to Aegis is that another framework? Still very new at this Jeremy Isikoff

Re: errors using HibernateDAOSupport and JAXB

2007-07-27 Thread Jeremy Isikoff
injected into it. Im just trying to build a spring-hibernate-cxf service this seems like it should be a pretty common application? Jeremy Isikoff (Getting Closer I hope) Be a better Globetrotter. Get

Re: errors using HibernateDAOSupport and JAXB

2007-07-27 Thread Jeremy Isikoff
] To: cxf-user@incubator.apache.org Sent: Friday, July 27, 2007 6:33:59 PM Subject: Re: errors using HibernateDAOSupport and JAXB I've gotten it working with JAXB but not aegis. I'll try to plugin the aegis bean you specified and let you know what I find out. On 7/27/07, Jeremy Isikoff [EMAIL

Re: errors using HibernateDAOSupport and JAXB-working!

2007-07-27 Thread Jeremy Isikoff
Julio and Brad, thanks so much for your help. It works fine with jaxb once you hide the DAO injection setter methods in the implementation class. - Original Message From: Jeremy Isikoff [EMAIL PROTECTED] To: cxf-user@incubator.apache.org Sent: Friday, July 27, 2007 7:49:33 PM Subject

Dependency Injection in JAXWS endpoint

2007-07-26 Thread Jeremy Isikoff
I have an endpoint declaration like this in my beans.xml file, the trouble is the implementing class needs to get hold of some other spring beans (mainly DAOs) so it can do its work. How can I inject these in or get the application context from within this implementation class? If this was a