Can anyone tell me what is the difference between using
new soap_server
and
new soapclient
I'm trying to send the following using nusoap
Code:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.atg.com/webservices">
<soapenv:Header/>
<soapenv:Body>
<web:register soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<profileDataAsXml xsi:type="xsd:string"><![CDATA[
<registration>
<login>ws-test7@mdp.com</login>
<firstname>Sam</firstname>
<password>pass</password>
<registrationsource>1000</registrationsource>
<optin>true</optin>
<sendregistrationemails>false</sendregistrationemails>
</registration>
]]></profileDataAsXml>
<clientCode xsi:type="xsd:string">1000</clientCode>
</web:register>
</soapenv:Body>
</soapenv:Envelope>
|