error when consuming a webservice made in .NET

0

I get this error when wanting to visualize the data of a webservice made in .NET, where CODIGOPRODUCTO is a parameter of the webservice.

  

Notice: Undefined property: stdClass :: $ CODEPRODUCT

This is my code:

$getproducts = file_get_contents('http://x.x.x.111/webservice.svc/getproducts');
$json = json_decode($getproducts);
$codigo = utf8_decode($json->{'CODIGOPRODUCTO'});
print_r ($codigo);
    
asked by Eduardo Trelles 20.09.2018 в 06:24
source

0 answers