Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/08/2012, 02:16
juanpe_f
 
Fecha de Ingreso: marzo-2012
Mensajes: 9
Antigüedad: 12 años, 1 mes
Puntos: 0
Recibir http post con xml y responder usando php

Buenas:

La cuestión es que voy a recibir un http post en una url con un XML y debo procesar ese XML y responder de una forma parecida a esto:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html
Server: Microsoft-IIS/7.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Length: 223

<?xml version="1.0" encoding="utf-8"?>
<response>
<status>Ok</status>
<info>
<message>Proceso realizado correctamente</message>
</info>
</response>

Como lo hago usando PHP

Muchas gracias de antemano