im nob in zend, I have create this webservice and i want to call this function in my zend project using the zend soap.
function insertion($id,$prenom,$nom,$nele,$ville)
{
$user = new USER($id,$prenom,$nom,$nele,$ville);
$user->SaveClient();
$return="okkkkkkkkkkk";
return $return;
}
$server->register('insertion',array('id'=>'xsd:string','prenom'=>'xsd:string', 'nom'=>'xsd:string','ne_le'=>'xsd:string','ville'=>'xsd:string'),array('return'=>'xsd:string'),'Namespace');
My problem is how can i access to my data base using an extern webservicew not the class Zend_Db_Table_Abstract