Hi Sergey,
your solution works. Thank you very much. I would like to show you my appreciation. Please let me know if I can buy you a book or DVD at Amazon or send you some money via PayPal. Best regards, Eduard > Please try JAXRSClientFactory.create(**address, MyService.class, null, > aValue, bValue); > > where 'null' is set for (Spring) configuration resource, I had to add this > extra parameter to this factory method to avoid various overloading issues. > > Alternatively: > > JAXRSClientFactoryBean bean = new JAXRSClientFactoryBean(); > bean.setAddress(address); > bean.setServiceClass(**MyService.class); > > MyService proxy = bean.create(MyService.class, aValue, bValue); > > That should do it, give it a try please > > Thanks, Sergey > >
