encryption - How can I pass username/password as an encrypted via SoapClient in PHP? -


i using soapclient call wsdl web-service, , working fine, have send username , password encrypted text not plane text (my web service using https) , idea guys?

$client = new soapclient("https://my-server/ws/student_api.php?wsdl", array('login'=> "test@test.ac.ae",'password'       => "123456")); $client->__soapcall("getstudentlist", array("std_id1")); 


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -