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