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
Post a Comment