Hi
On 29/07/13 09:24, Julio Carlos Barrera Juez wrote:
Hi!

JAXRSClientFactory has a create method accepting basic authentication
parameters 
(http://cxf.apache.org/javadoc/latest/org/apache/cxf/jaxrs/client/JAXRSClientFactory.html#create(java.lang.String,
java.lang.Class, java.lang.String, java.lang.String, java.lang.String)).
And aI want to use the same parameters plus the providers list.

How can I obtain a proxy client using all the parameters I need? (basic
authentication, base address, class and providers).

Please use JAXRSClientFactoryBean, as it is not possible to capture all the combinations with the utility JAXRSClientFactory.
So you'd do

JAXRSClientFactoryBean bean = new JAXRSClientFactoryBean();
bean.setAddress(address);
// set other properties
bean.create(MyProxy.class)

HTH, Sergey
Thank you!



--
Sergey Beryozkin

Talend Community Coders
http://coders.talend.com/

Blog: http://sberyozkin.blogspot.com

Reply via email to