Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
I got this a bit farther. I looked the cxf.xml files available in the latest archive for CXF (2.2.3), and found a wsdl first xmlbeans example that seemed at least plausibly usable and set it up for one of the services I'm exposing. Where do I want to put this so it gets picked up properly? Does

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
OK, I was able to build and successfully run all my dao and mgr tests and did an mvn install into web as well and that went smoothly but when I went into the web directory to do the run war target and pop up jetty and run the app it hit what looks like the other comments I saw about the cxf.xml mi

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
ok got the build problem with asm and cglib resloved with this mod done to the core/pom.xml (again, this is a struts2 modular project)., I added the exclusions to the appfuse-${dao.framework} dependency just after where you have to make the pom.xml mod from the tutorials for using appfuse core mod

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread Matt Raible
On Sat, Sep 26, 2009 at 3:27 PM, jackalista wrote: > > I piped "mvn dependency:tree" to a file and found this refer under hibernate > that appears to be 1.x: > > [INFO] +- org.appfuse:appfuse-hibernate:jar:2.0.2:compile > [INFO] |  +- org.hibernate:hibernate:jar:3.2.6.ga:compile > [INFO] |  |  +-

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
I piped "mvn dependency:tree" to a file and found this refer under hibernate that appears to be 1.x: [INFO] +- org.appfuse:appfuse-hibernate:jar:2.0.2:compile [INFO] | +- org.hibernate:hibernate:jar:3.2.6.ga:compile [INFO] | | +- javax.transaction:jta:jar:1.0.1B:compile [INFO] | | +- asm:asm

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
I added the spring-web dependency back into the modular top level pom.xml in the main dependencies list at the very end but I am still getting these compile errors for asm and cglib so I think I hosed the exclusions and / or depedencies for those. Here's the errors I'm getting when compiling (abb

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread Matt Raible
You should be able to simply upgrade ASM, not really remove it. Here's what the CXF migration guide[1] says: The JAX-WS frontend now "requires" asm 2.x or 3.x to be able to process some of the JAXB annotations on the SEI interface. If you don't use those annotations on the SEI, or if you have gene

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread -=j=-
Ah, thanks, I'll put that back in. Also, I'm getting compile errors relating to asm and cglib, so I suspect that the exclusions or dependencies are in the wrong place. Are they in the right place? -=j=- On Sat, 2009-09-26 at 14:50 -0600, Matt Raible wrote: > You still need spring-web upgrade

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread Matt Raible
You still need spring-web upgraded if you're using Struts 2. You should be able to use "mvn dependency:tree" to see if your dependencies look right. On Sat, Sep 26, 2009 at 2:46 PM, jackalista wrote: > > Hi Nils, > > I'm tryingto follow along these directions and am having trouble > understanding

Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread jackalista
Hi Nils, I'm tryingto follow along these directions and am having trouble understanding part of your guide. I'm using appfuse 2.0.2 with the modular struts2 archetype, in case it matters. I'm getting errors from both asm and cglib so I'm better I didn't put the & stuff in the right place.