I am using Microsoft Enterprise Library for the caching application block, I have an application that is suppose to load clients into the cache with an absolute expiration time defined in minutes.

The idea is that when an item expires, the ICacheItemRefreshAction is supposed to run the refresh method and send an SMS message via WCF.

But the event doesn't fire on absolute time expiration or it works once and another time it doesn't work.

The code seems to be OK what am I doing wrong?

This is the code:

    int ReminderTime;
    int cacheExparationTime;
    string CellPhone;

    ObjCacheManager = CacheFactory.GetCacheManager("parkingCache");

    m_CacheInterval = TimerCache.CacheInterval;

    dt = DL.DataLayer.LoadToCache(SP_LOAD_CACHE, m_CacheInterval.ToString()).Tables[0];//UniParkDAL.DalManager.GetDataTable(SP_LOAD_CACHE, sqlParams);

    if (dt != null && dt.Rows.Count > 0)
    {
        foreach (DataRow dr in dt.Rows)
        {
            ReminderTime = Convert.ToInt32(dr["ReminderTime"]);
            CellPhone = CleanPhoneNumber(dr["Mobile"].ToString(), "972");
            TimeSpan DateDiff = DateTime.Parse(dr["IntervalEnd"].ToString()).Subtract(DateTime.Now);
            string Minutes = DateDiff.Minutes.ToString();

            if (ReminderTime > 0)
            {
                cacheExparationTime = ReminderTime;
                ReminderTime = Convert.ToInt32(Minutes) - ReminderTime;
                m_message = string.Format("your parking will end in {0} minutes", ReminderTime.ToString());

                m_AbsoulteTime = new AbsoluteTime(TimeSpan.FromMinutes(cacheExparationTime));
                ObjCacheManager.Add(CellPhone, m_message, CacheItemPriority.Normal, new CallService(), m_AbsoulteTime);
            }
        }
    }
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.