RE: client code to access java_first_jaxws on tomcat

2008-02-20 Thread Daniel Lipofsky
Thanks for the speedy replies. Willem's simple change got my client working, and Glen's well documented and more complex examples will probably save my sanity as I progress in this project. - Dan > -Original Message- > From: Daniel Lipofsky [mailto:[EMAIL PROTECTED] > Sent: Tuesday, Febru

Re: client code to access java_first_jaxws on tomcat

2008-02-19 Thread Willem Jiang
Hi Dan, You set the wrong endpointAddress. "http://localhost:8080/helloworld/services/hello_world?wsdl"; is the service wsdl url. you need to set the endpointAddress to be "http://localhost:8080/helloworld/services/hello_world"; Willem Daniel Lipofsky wrote: I am trying to learn CXF,

Re: client code to access java_first_jaxws on tomcat

2008-02-19 Thread Glen Mazza
Here's a WSDL-first example I created: http://www.jroller.com/gmazza/date/20071019 For just a pure client, of an already existing web service: http://www.jroller.com/gmazza/date/20070929 HTH, Glen Am Dienstag, den 19.02.2008, 16:24 -0800 schrieb Daniel Lipofsky: > I am trying to learn CXF, I hav