Package org.apache.axis.client

Examples of org.apache.axis.client.AxisClientProxy


      AddressBean addressBean = new AddressBean();
      addressBean.setStreet("55, rue des Lilas");
      AddressBeanHolder addressBeanHolder = new AddressBeanHolder(addressBean);
       
      QName qName = new QName("http://jaxrpcdynproxy.wsdl.test", "AddressBean");
      AxisClientProxy clientProxy = (AxisClientProxy) Proxy.getInvocationHandler(myProxy);     
      clientProxy.getCall().registerTypeMapping(AddressBean.class,
                                                qName,
                                                BeanSerializerFactory.class,
                                                BeanDeserializerFactory.class,
                                                false);
      myProxy.updateAddress(addressBeanHolder, 75005);
View Full Code Here

TOP

Related Classes of org.apache.axis.client.AxisClientProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.