Jasmin - 2008-02-25 08:57:37
hi,
i'm using your class to generate wsdl files for our intranet-webservice plattform. great work!
i've got something like this:
class Cust {
public function Exists($CustId) {
return true
}
}
class Ns {
protected $Customer;
public function __construct() {
$this->Customer = new Cust();
}
public function CustOb() {
return $this->Customer;
}
}
is it possible to publicate the class ns as a webservice and using it like this:
$client = new SoapClient();
$client->CustOb()->Exists(123);
does your class-support this and when yes, how i have to do the settings?
thank you for your fast reply :-)
jasmin