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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -