Exemplo n.º 1
0
 public Boolean deleteRow(int id)
 {
     try
     {
         ICustomsCMS   server        = XmlRpcInstance.getInstance();
         DBRPCResponse dBRPCResponse = server.deleteJobInstruct(id);
         if (dBRPCResponse.error_code != 0)
         {
             throw new Exception("连接服务器错误:" + dBRPCResponse.error_msg);
         }
         return(true);
     }
     catch (Exception ex)
     {
         throw new Exception("错误:" + ex.Message);
     }
 }