<?php
$client = new SoapClient("http://localhost:8080/calculator?wsdl");
$result = $client->add(3,3);
echo $result;
?>
Getting error:
Object of class stdClass could not be converted to string
How can I print out the response from SoapClient?
Use print_r
or var_dump