Re: Serialize parameters on client side

2017-03-10 Thread arjun dhar
Oh Darn! I found the problem. its "ParamConverterProvider" not "ParameterConverterProvider" Sorry -- View this message in context: http://cxf.547215.n5.nabble.com/Serialize-parameters-on-client-side-tp5726421p5777938.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: Serialize parameters on client side

2017-03-10 Thread arjun dhar
Hi, Im upgrading from 2.7.5 to 3.1.10. I cant find the maven artifact that contains "ParameterConverterProvider". Am sorry its a bit silly but its driving me nuts. Based on the doc http://cxf.apache.org/docs/jax-rs.html --

Re: Serialize parameters on client side

2013-09-04 Thread eanbiso
Hi Sergey, I'm in a similar situation...I must use a parameter converter for Date type to be sure at the serialization of a Date parameter the toString() method adds also the milliseconds info in the produced string (until now I've seen that when a Date obj is serialized by default the string is

RE: Serialize parameters on client side

2013-09-04 Thread eanbiso
ParameterHandlerDate{...} that is properly recalled, while on client side I'm not able to enter in the toString of the new parameter converter. Andrea Date: Wed, 4 Sep 2013 07:43:27 -0700 From: ml-node+s547215n5733518...@n5.nabble.com To: bisoma...@hotmail.it Subject: Re: Serialize parameters

Re: Serialize parameters on client side

2013-09-04 Thread Sergey Beryozkin
I guess I know what it is, assuming it CXF 2.7.x, JAX-RS 2.0 param converters are complex, you actually need to register ParamConverterProvider http://jax-rs-spec.java.net/nonav/2.0/apidocs/javax/ws/rs/ext/ParamConverterProvider.html it will return specific ParamConverters, example, you may

Re: Serialize parameters on client side

2013-09-04 Thread Sergey Beryozkin
To: bisoma...@hotmail.it Subject: Re: Serialize parameters on client side Hi, What CXF version and how method Date parameter is annotated ? Cheers, Sergey On 04/09/13 15:24, eanbiso wrote: Hi Sergey, I'm in a similar situation...I must use a parameter converter for Date type

Re: Serialize parameters on client side

2013-09-04 Thread Sergey Beryozkin
Hi, What CXF version and how method Date parameter is annotated ? Cheers, Sergey On 04/09/13 15:24, eanbiso wrote: Hi Sergey, I'm in a similar situation...I must use a parameter converter for Date type to be sure at the serialization of a Date parameter the toString() method adds also the

Re: Serialize parameters on client side

2013-04-17 Thread Sergey Beryozkin
Hi On 17/04/13 09:15, Raphael Jolivet wrote: Hi, I am developping a REST application with Apache CXF. On server side, I have setup a ParameterHandler in order to parse Dates with a custom format. What is the counterpart on client side in order to serialize a parameter ? Up until CXF 2.7.x the