On Aug 6, 2013, at 11:14 PM, XiLai Dai <[email protected]> wrote: > Hi, there > > I got a quick question: how to set a property value to Client after it's > already created from an FactoryBean? > > ClientFactoryBean clientFactory = new JaxWsClientFactoryBean(); > clientFactory. setProperties(...); > Client client = clientFactory.create(); > > Then, how to add a new property name/value to the client object?
Probably do a client.getEndpoint().put(….) if you are just trying to set something that can be queries as a contextual property in an interceptor. Dan > > Thanks! > Xilai -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
