I have a SoapServer setup to use a class I wrote. The class has a constructor and I am not sure how to, on the Client side, initalize the SoapClient with the classes parameters.
so.
if SoapServer uses...
class Test {
private $param;
public function __construct($param) {
$this->param = $param;
}
}
... the on the client side do a SoapClient but passing $param along with it.
Anyone know?