Examples of AgregarContacto


Examples of webservice.ServicioContactoStub.AgregarContacto

        oContactoVO.setNombre(contact.getFirstname());
        oContactoVO.setApellido(contact.getLastname());
        oContactoVO.setMail(contact.getEmail());
        oContactoVO.setTelefono(contact.getTelephone());
       
        AgregarContacto oAgregarContacto = new AgregarContacto();
        oAgregarContacto.setOContactoVO(oContactoVO);
        AgregarContactoResponse objResponse = oStub.agregarContacto(oAgregarContacto);
        String mensaje = objResponse.get_return();

            System.out.println(mensaje);
        return new ModelAndView("saludo", "message", mensaje);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.