Hi Some more info is available here:
http://cxf.apache.org/docs/jax-rs-basics.html The Talend user guide (registration is needed) is available here: http://www.talend.com/resources/documentation.php It has the tutorial too. Matt - @WebService is only needed for the legacy CXF HTTP Binding, its presence makes no difference to the JAX-RS runtime. Cheers, Sergey On Thu, Mar 24, 2011 at 1:26 PM, Matthew Glubb <[email protected]> wrote: > Mark, > > Not sure you mean for a client or a server but to configure a web service > to accept PUT data: > > @WebService > public class Service { > > @PUT > @Path("/") > public void add(Object object) { > // Do stuff with PUT object > } > } > > Should work for you. > > > Matt > > > Matthew Glubb > Technical Partner > > email: [email protected] > phone: 44 (0) 7715 754017 > skype: mglubb > > Kite > http://madebykite.com > > -- > GPG: 96FF DE0E 0B7B 37F0 7F8D C54C E285 3D8F 5625 9244 > > On 24 Mar 2011, at 13:19, Mark Webb wrote: > > > I am looking for an example using CXF and the REST PUT command. I am > > having problems finding an example or tutorial on your site. I have > > googled around and can't find any good documentation on this. > > > > Could you please forward me to some documentation that provides me > > with this information. > > > > Thanks, > > Mark > >
