Again, I am somewhat unclear. Is the idea that you want a PHP SOAP server? If so, check NuSOAP. I would also recommend checking PHP resources, e.g. php.net.
Scott Nichol ----- Original Message ----- From: "Dale Attree" <[EMAIL PROTECTED]> To: "SOAP-Dev" <[EMAIL PROTECTED]> Sent: Wednesday, October 09, 2002 5:46 AM Subject: SOAP parsing > Is there anyway with PHP to obtain the entire HTTP request containing the > SOAP message so as to decode the SOAP message and obtain the data within the > SOAP message? > > Here is the request being sent by my client, I now need to be able to parse > on the server side. > > POST /development/de/xkernel.php HTTP/1.0 > User-Agent: Bubbles/0.1 > Host: kwik.apollo.local > Content-Type: text/xml > Content-Length: 655 > SOAPAction: "SOAP process" > > <?xml version="1.0" encoding="ISO-8859-1"?> > <SOAP-ENV:Envelope > SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" > xmlns:si="http://soapinterop.org/xsd"> > <SOAP-ENV:Body> > <nu:test xmlns:nu="http://testuri.org"> > <action xsi:type="xsd:string">Bubbles</action> > <author xsi:type="xsd:string">Dale 'KWIK' Attree</author> > <text xsi:type="xsd:string">123</text> > </nu:test> > </SOAP-ENV:Body> > </SOAP-ENV:Envelope> > > Kind Regards, > Dale Attree > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>