protected function checkAuth()
 {
     if (!$this->authenticated) {
         HTML_Output::error(403);
         throw new SoapFault("authenticate", "User not valid.");
     }
     return true;
 }
 protected function checkAuth()
 {
     if (!$this->authenticated) {
         HTML_Output::error(403);
     }
 }