I have a client that is passing XML such as the below to me. All the examples I've seen for NuSoap have a named service such as
$response = $client->send($mysoapmsg, $soapaction); |
My client doesn't specify a named service, it just sends the XML to my server, just like using DOM with ASP.
I wish to create a NuSOAP server to handle this...
<contact>
<name>
<first>John</first>
<last>Smith</last>
</name>
<address city="PleasantVille" state="CA" zip="92222">
<street>1 Main Street</street>
<street>Apt. #5</street>
</address>
<website>www.johnsmith.com</website>
<email>john@smith.com</email>
<email>John.Smith@smith.com</email>
</contact> |