Tenho um site que posso acessar via SOAP
Gostaria de uma luz em como posso colocar o access pra fazer a buscar de dados ?
Tenho um exemplo da própria aplicação
$client = new nusoap_client("https://api.tiny.com.br//api2.php?wsdl", true);
$client->soap_defencoding = 'UTF-8';
$client->decode_utf8 = false;
$result = $client->call("obterContatoService", array('token' => 'xxxxx','id'=>'xxxxx','formato'=>'XML'));
$res = array();
if ($client->fault) {
$retorno = $result['faultstring'];
} else {
$err = $client->getError();
if ($err) {
$retorno = $err;
} else {
$retorno = $result;
}
}