Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/10/2014, 08:53
newmoon798
 
Fecha de Ingreso: julio-2012
Mensajes: 3
Antigüedad: 11 años, 9 meses
Puntos: 0
Respuesta: nusoap con codeigniter llamada cliente

hola compañero estoy usando la libreria nusoap para consumir el cliente
esto el lo que recibo

Código XML:
Ver original
  1. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:con="http://www.movistar.com.pe/consultapromosati">
  2.    <soapenv:Header/>
  3.    <soapenv:Body>
  4.       <con:ObtenerPromociones>
  5.          <!--Optional:-->
  6.          <con:pTelefono>955945457</con:pTelefono>
  7.       </con:ObtenerPromociones>
  8.    </soapenv:Body>
  9. </soapenv:Envelope>


esta es mi respuesta pero no se como recibirlo

Código XML:
Ver original
  1. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  2.    <soap:Body>
  3.       <ObtenerPromocionesResponse xmlns="http://www.movistar.com.pe/consultapromosati">
  4.          <ObtenerPromocionesResult>
  5.             <CodigoRespuesta>0000</CodigoRespuesta>
  6.             <NroCampannas>1</NroCampannas>
  7.             <Telefono>955945457</Telefono>
  8.             <Campannas>
  9.                <Campanna>
  10.                   <Id>000471</Id>
  11.                   <PromocionId>NUR</PromocionId>
  12.                   <Descripcion>HABLA hasta S/0.20 el MINUTO a otros Movistar de Peru! Ademas recibe SMS e INTERNET hasta por 8 dias</Descripcion>
  13.                </Campanna>
  14.             </Campannas>
  15.          </ObtenerPromocionesResult>
  16.       </ObtenerPromocionesResponse>
  17.    </soap:Body>
  18. </soap:Envelope>

Última edición por newmoon798; 01/10/2014 a las 10:50