Re: Getting started with JAX-WS

2007-01-19 Thread James Mao
Right, another way to get the response xml back with your favorite browser is: http://localhost:9000/hello/sayHi/text/Cameron That's the URI mapping we enabled by default for the HTTP GET, Check Readme in the hellworld demo, to 'GET' more info and more precisely, i would not say it's a REST,

Re: Getting started with JAX-WS

2007-01-19 Thread Willem Jiang
Hi Cameron, I just took a look at cxf-rt-transports-http2 's return the service wsdl for the query string with 'wsdl'. It is real a bug for the cxf-rt-transports-http2. I had done a quick fix for it, please see the latest code in the repository. Thank you for your trying and giving the feedb

RE: Getting started with JAX-WS

2007-01-18 Thread Liu, Jervis
To: cxf-user@incubator.apache.org Subject: Re: Getting started with JAX-WS Hi Willem, Thanks for your help. Where do I find the hello_world JAX-WS example? I've been hacking away. This is partially working: Bus bus = BusFactoryHelper.newInstance().createBus(); SoapTransportFactory soap

Re: Getting started with JAX-WS

2007-01-18 Thread Cameron Taggart
Hi Willem, Thanks for your help. Where do I find the hello_world JAX-WS example? I've been hacking away. This is partially working: Bus bus = BusFactoryHelper.newInstance().createBus(); SoapTransportFactory soap = new SoapTransportFactory(); soap.setBus(bus); HTTPTransportFactory http = new

RE: Getting started with JAX-WS

2007-01-17 Thread Johnson, Eric
To: cxf-user@incubator.apache.org > Subject: Getting started with JAX-WS > > I'm having trouble getting started with the JAX-WS front end, > so I voted for: > https://issues.apache.org/jira/browse/CXF-52 > > I've read through the Architecture Guide > (http://cwiki.apache.o

Re: Getting started with JAX-WS

2007-01-17 Thread Willem Jiang
Hi Cameron, Just as Jervis had said, you can use the JAX-WS API as the hello_world sample had showed to create Web Services. I just read quick look at your code. If you want to use the JaxWsServiceFactoryBean, I can give you some points about the BusExtension stuff. 1. The Bus keeps all th

RE: Getting started with JAX-WS

2007-01-16 Thread Liu, Jervis
ng started with JAX-WS I'm having trouble getting started with the JAX-WS front end, so I voted for: https://issues.apache.org/jira/browse/CXF-52 <https://bosgate2.iona.com/https/0/issues.apache.org/jira/browse/CXF-52> I've read through the Architecture Guide (http://cwiki.a

Getting started with JAX-WS

2007-01-16 Thread Cameron Taggart
I'm having trouble getting started with the JAX-WS front end, so I voted for: https://issues.apache.org/jira/browse/CXF-52 I've read through the Architecture Guide (http://cwiki.apache.org/CXF/architecture-guide.html) and checked out svn head, imported into Eclipse, and have been looking around t