Code: Select all
<SOAP-ENV:Body>
<login_authenticate_request xmlns="http://Think/XmlWebServices/" >
<user_login_data xmlns="http://Think/XmlWebServices/" >
<login>WUser</login>
<password>********</password>
</user_login_data>
<customer_identifier xmlns="http://Think/XmlWebServices/" >
<customer_id/>
<login>sean</login>
<password>********</password>
</customer_identifier>
</login_authenticate_request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Code: Select all
$user_login_data = array('login' => 'WUser', 'password' => 'w3bus3r');
$customer_identifier = array('customer_id' => '', 'login' => 'sean', 'password' => 'sean');
$result = $soap->call('LoginAuthenticate', array('user_login_data' => $user_login_data, 'customer_identifier' => $customer_identifier)); please give instructions on how to remove this from my requests.