private static function Execute($Command)
 {
     Soap::CreateConnection();
     $Result = Soap::$SConnection->executeCommand(new SoapParam($Command, 'command'));
     Soap::CloseConnection();
     Soap::FlushItemsArray();
     if (is_soap_fault($Result)) {
         return false;
     } else {
         return true;
     }
 }