[appfuse-user] CXF and WSDL Problems

2010-06-06 Thread andy2680
Hi, I tried now a couple of days to get the Webservices in appfuse (Version 2.1.0-M1 with tapestry) to work. Everything is working really fine except for the connection from a client to the webservice. I worked with the tutorial from apache. But its not working. I tried a lot from using different

Re: [appfuse-user] CXF and WSDL Problems

2010-06-06 Thread jack
Can you write a java client that can exercise the service? What I'm getting at is have you successfully exercised the service and so know there's a problem w/ the client or could there be problems with both? --j Sent from my Verizon Wireless BlackBerry -Original Message- From: andy26

[appfuse-user] Re: CXF and WSDL Problems

2010-06-06 Thread andy2680
No, that wasn´t possible yet. I think the connection kind of works, but I´m not sure where the problem exactly is (server or client). If I try to call the methode sayHello the error occurs. I think its because of the urlrewrite. I have to call http://localhost:8080/services//HelloWorld?wsdl to

Re: [appfuse-user] Re: CXF and WSDL Problems

2010-06-06 Thread jack
Yeah you might be right, check that out, you shouldn't need 2 slashes ("//"). This is with a current version of appfuse and with tapestry front end? I'm pretty ignorant re: tapestry and haven't tried the new appfuse with CXF but did integrate with CXF before that myself and didn't have that pr

[appfuse-user] CXF and WSDL Problems

2010-06-06 Thread andy2680
Hi, I tried now a couple of days to get the Webservices in appfuse (Version 2.1.0-M1 with tapestry) to work. Everything is working really fine except for the connection from a client to the webservice. I worked with the tutorial from http://cxf.apache.org/docs/writing-a-service-with-spring.html

Re: [appfuse-user] PersonDaoTest: Autowiring of fields failed

2010-06-06 Thread Matt Raible
Your dependency should be of type GenericDaoHibernate and you probably need a @Qualifier("personDao") on it. The code for completed tutorials can be found at http://appfuse-demos.googlecode.com. Hope this helps, Matt On Thu, May 20, 2010 at 7:27 AM, Justin Mancinelli wrote: > Hi, > > I set up a

Re: [appfuse-user] Re: Appfuse 2 and netbeans

2010-06-06 Thread Matt Raible
On Tue, May 18, 2010 at 4:47 PM, ErEcTuS wrote: > > Hello Matt, thanks for responding. > Yeah i did what you advised me. I use netbeans 6.8, I created a maven > project, i picked my pom.xml and my project was there. > > First i wanted to ask you, what's the difference between trying Build and > Ru

Re: [appfuse-user] Issue with hibernate.dialect

2010-06-06 Thread Matt Raible
This happens when you use jetty:run b/c the jdbc.properties (in src/main/resources) had placeholders ${...} instead of real values. As a workaround, you can copy the processed jdbc.properties (from target/classes) back into src/main/resources. On Tue, Jun 1, 2010 at 11:01 PM, Jadaaih wrote: > > H

Re: [appfuse-user] PersonDaoTest: Autowiring of fields failed

2010-06-06 Thread Justin Mancinelli
Thanks, I never had a chance to fix it before the required time so I just grabbed appfuse 2.0.2 and didn't use autowire. I was able to get things working by modifying different parts based on what was already there. On Mon, Jun 7, 2010 at 8:15 AM, Matt Raible wrote: > Your dependency should be of