Re: how to configure HTTPConduit for client using java code

2008-02-15 Thread Benson Margulies
On Fri, Feb 15, 2008 at 10:17 AM, yulinxp [EMAIL PROTECTED] wrote: For server side, I understand. But I thought client shouldn't worry about the data binding at all. The CXF client has to use a data binding just like the server. How else can know how to map XML to Java for you.

Re: how to configure HTTPConduit for client using java code

2008-02-14 Thread Daniel Kulp
On Wednesday 13 February 2008, yulinxp wrote: User's guide shows how to configure HTTPConduit for client using java code http://cwiki.apache.org/CXF20DOC/client-http-transport-including-ssl-s upport.html import org.apache.cxf.endpoint.Client; import org.apache.cxf.frontend.ClientProxy

Re: how to configure HTTPConduit for client using java code

2008-02-14 Thread Willem Jiang
Hi , I think the default Data Binding in the ServiceFactory is JaxbDatabinding. That's why you need to do when you want to use AegisDatabinding. Willem. yulinxp wrote: Why/when is it needed to set AegisDatabinding for client at all ? ClientProxyFactoryBean factory = new

how to configure HTTPConduit for client using java code

2008-02-13 Thread yulinxp
User's guide shows how to configure HTTPConduit for client using java code http://cwiki.apache.org/CXF20DOC/client-http-transport-including-ssl-support.html import org.apache.cxf.endpoint.Client; import org.apache.cxf.frontend.ClientProxy; import org.apache.cxf.transport.http.HTTPConduit