• 如何赋予职能这一节点;
$update = $soap->UpdateMember($pRec或d);
或
$update = $soap->__soapCall( UpdateMember , array($Updates));
I need to add namescape 或 xmlns attribute to the actual function name here. I m getting the following;
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.或g/soap/envelope/" xmlns:ns1="http://www.sample.net/">
<SOAP-ENV:Body>
<ns1:UpdateMember>
MORE XML HERE
</ns1:UpdateMember>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
但我需要
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.或g/soap/envelope/" xmlns:ns1="http://www.sample.net/">
<SOAP-ENV:Body>
<ns1:UpdateMember xmlns="http://www.sample.net/">
MORE XML HERE
</ns1:UpdateMember>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Need to have ns1:UpdateMember xmlns:ns1="http://www.sample.net/" 或 something like that.