Advertisement
joris

SOAP Proses

Nov 27th, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. header('content-type:application/json;charset=UTF-8');
  3. date_default_timezone_set("Asia/Jakarta");
  4. require_once('lib/nusoap.php');
  5.  
  6. $Param1 = "bertho_joris@yahoo.co.id";
  7. $Param2 = "malaquena";
  8.    
  9. $client = new nusoap_client('http://vcare.telkomvision.net.id/services/VcareServices.php');
  10. $BacaSOAP = $client->call('validateLogin', array('EMAIL' => $Param1, 'PASSWORD' => md5($Param2)));
  11.  
  12. echo '{"items":['. json_encode($BacaSOAP) .']}';
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement