Skip to content

Instantly share code, notes, and snippets.

@k4m4r82
Created May 14, 2014 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k4m4r82/de8a03018f5b47020b81 to your computer and use it in GitHub Desktop.
Save k4m4r82/de8a03018f5b47020b81 to your computer and use it in GitHub Desktop.
<?php
header('Content-Type: text/plain');
$wsdl = 'http://localhost/ServiceKoperasi/ServiceBarang.svc?wsdl';
$client = new SoapClient($wsdl);
$result = $client->GetAll();
foreach ($result->GetAllResult->Barang as $barang) {
echo $barang->BarangID . ", " . $barang->NamaBarang . ", ". $barang->Harga . "\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment