Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/12/2014, 15:23
ocp001a
Colaborador
 
Fecha de Ingreso: mayo-2008
Ubicación: $MX['VZ']['Xalapa']
Mensajes: 3.005
Antigüedad: 16 años, 8 meses
Puntos: 528
Respuesta: xml nusoap cliente

Puedes capturar lo recibido:

Código PHP:
Ver original
  1. if(isset($HTTP_RAW_POST_DATA)){
  2.     $input = $HTTP_RAW_POST_DATA;
  3. }
  4. else{
  5.     $input = implode("\r\n",file("php://input"));
  6. }
  7. error_log("Datos recibidos".var_export($input,true));
en el log te escribirá lo que recibiste (el xml)