Skip to content

Instantly share code, notes, and snippets.

@vyper
Created June 11, 2012 00:26
Show Gist options
  • Save vyper/2907833 to your computer and use it in GitHub Desktop.
Save vyper/2907833 to your computer and use it in GitHub Desktop.
$client = new SoapClient("http://localhost:8280/services/Tutorial?wsdl");
try {
$obj = $client->searchProductsByGroupId(array("group_id" => 1));
print_r($obj);
} catch (Exception $e) {
echo "ERRO: " . $e->getMessage();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment