diff --git a/library/Class/WebService/Abstract.php b/library/Class/WebService/Abstract.php
index fe909b7a2584305d50383e06b30c2a51872da186..80831b3ff8599b86bd666a6fcaf8baba9b5eb2ab 100644
--- a/library/Class/WebService/Abstract.php
+++ b/library/Class/WebService/Abstract.php
@@ -19,7 +19,7 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
  */
 
-abstract class Class_WebService_Abstract {
+class Class_WebService_Abstract {
   protected $_message;
   protected static $_http_client;
 
@@ -43,12 +43,12 @@ abstract class Class_WebService_Abstract {
 
 
 
-  function setMessage($message) {
+  public function setMessage($message) {
     $this->_message=$message;
   }
 
 
-  function getMessage() {
+  public function getMessage() {
     return $this->_message;
   }