Re: Spring RESTful service vs CXF RESTful service

2012-01-02 Thread antoine philippe chaker
Hello Kannan, I'm not an expert in this two framework but i used to manipulate this 2 frameworks every days. It seems that Spring RESTful is based on Crossfire so on CXF but i'm not 100% sure ! But in deep, cxf offers a more flexible way if you have to turn on WSDL or other web services technolog

Re: WebApplicationException

2011-11-24 Thread antoine philippe chaker
Ok, Here is my config in my applicationContext file for Json : The json sequence is very big so i have put it in a joined file. 2011/11/24 Sergey Beryozkin > Hi > > > On 24/11/11 10:27, antoine philippe chaker wrote: > >> Hi everybody, >> >> i

WebApplicationException

2011-11-24 Thread antoine philippe chaker
Hi everybody, i use CXF in my webapp to make REST service. In my view i use JQuery to catch my service. Here is my problem : - i have a pojo that i invoke via jquery in json (my object is mapped with JAX-RS annotations) . - when i want to resend the same object unchanged to the server via POST wi

Re: Tutorial for creation of RESTful interface with CXF?

2011-08-07 Thread antoine philippe chaker
Hi Klaus, What you want to do with CXF is not complicated, but without Spring and Maven ... I think that you can't. On the other side, it's a gain for you to know this two technologies as they are used on many Apache and many more projects. Greet 2011/8/7 Sperner, Klaus > Dear CXF Users, > > I

Re: Help on REST Bests practices

2011-06-06 Thread antoine philippe chaker
Hi Pascal, I'm newbie too but i know that RESTful service is a very simple concept. You can find many tutorial on the apache CXF website project. But i want to know the goal of "xdocreport" as there is already some api like JasperReport and Birt that do the same thing ? (sorry for this question)

Re: MBeans, get your MBeans

2011-02-09 Thread antoine philippe chaker
Please, what do you mean by "to build a sort of JSON<->MBean, and then an HTML UI" ? 2011/2/9 Benson Margulies > CXF, like many other things at Apache and beyond, exposes various > management information via MBeans. I'm extremely curious as to how > people consume them. > > I looked around, and

Re: Creating a simple client

2010-11-23 Thread antoine philippe chaker
Hi Henrik, I can give you some small advices before the gurus of CXF do : - First it's important to have a good knowledge of Spring framework - Second, install firefox and install the Poster add on - Third, Google is your friend : you will find many tutorial to getting started with CXF. Good Luc

Re: Newbie question. Webservice not registered in servlet

2010-06-30 Thread antoine philippe chaker
Hi Ted, i'm a newbie too :-) but could you give us the complete url that you try to call ? Philippe 2010/6/30 Ted Roeloffzen > Hi All, > I have a quick question. > I'm using cxf 2.2.3 and I want to register a service (the server side) via > Spring. > My web.xml contains > > contextConfigLoc

Re: Newbie problem

2010-06-10 Thread antoine philippe chaker
; > > -----Original Message- > From: antoine philippe chaker [mailto:philippe.cha...@gmail.com] > Sent: Thursday, June 10, 2010 4:51 AM > To: users@cxf.apache.org > Subject: Newbie problem > > Hi , > I just want to know how to pass two parameters to a @POST

Newbie problem

2010-06-10 Thread antoine philippe chaker
Hi , I just want to know how to pass two parameters to a @POST annotated method. Here is the header of the method @SuppressWarnings("unchecked") @POST @Path("/insert/doc1") @Consumes( { "application/json", "application/xml", "text/xml" }) @Produces( { "application/json", "ap