zhou JamesID:jameszhou
85899次访问,排名1053好友2人,关注者26
PMP & MCAD
jameszhou的文章
原创 85 篇
翻译 0 篇
转载 0 篇
评论 71 篇
James Zhou的公告
Locations of visitors to this page

最近评论
chjttony:说多了,没什么意思啊,时间才能证明一切,等到看就有答案了
kenpusney:总感觉微软没前途...
控制帐户:很好。
找了半天什么是控制帐户,终于看到这里有说明。
不过英文看起来恼火。
aladdin:這沒有帶來什麼思想解放阿...

1. HttpContext.RewriteUrl,從2003年就開始用了。

2. M$沒事把這些並不是常常需要用到的把戲,弄得好像和藹可親,但卻常常忘記了: 1) Layering,2) Lightweight,再加上M$常常給出不正確的practice,以致於新的小朋友進公司,還得要花上很多時間把這些錯誤從他們的……
tcly:好像有点牛头不对马嘴呀
文章分类
收藏
    相册
    链接
    Old Blog - Runner on .NET
    存档
    订阅我的博客
    XML聚合  FeedSky

    原创 MS CRM Callouts Tip - Avoid Dead Loop in Callouts收藏

    新一篇: 通过了PMP考试 | 旧一篇: MS CRM Callouts Tip - 在Callouts中调用log4net

    Problem: If you call CRM web service to update an entity in this entity's  PostUpdate event handler, you may get a dead loop in your Callouts. This problem is not easy to find out as the way you debug the Callouts. If you get a blank page in CRM Web UI after some Callouts is triggered, check Windows Event Logs and you may find an error saying something has timeouted.

    Cause: The reason is in a PostUpdate event handler, calling of CRM web service to update the entity will trigger another PostUpdate event, then this PostUpdate event handler is executed again, then dead loop...

    Solution: If you really need some update to the entity in its PostUpdate event handler, e.g. update some customized fields on this entity, here is my solution:

    A helper class:

    class CalloutHelper
        {
            private static System.Collections.Hashtable _FlagDictionary = Hashtable.Synchronized(new Hashtable());

            public static void SetBypassCalloutFlag(string entityGUID, string userGUID)
            {
                string flagKey = GenerateFlagKey(entityGUID,userGUID);

                if(!_FlagDictionary.ContainsKey(flagKey))
                {
                    lock (_FlagDictionary.Keys.SyncRoot)
                    {
                        _FlagDictionary.Add(flagKey, null);
                    }
                }
            }

            public static void ResetBypassCalloutFlag(string entityGUID, string userGUID)
            {
                string flagKey = GenerateFlagKey(entityGUID, userGUID);

                if (_FlagDictionary.ContainsKey(flagKey))
                {
                    lock (_FlagDictionary.Keys.SyncRoot)
                    {
                        _FlagDictionary.Remove(flagKey);
                    }
                }           
            }

            public static bool IsBypassCallout(string entityGUID, string userGUID)
            {
                string flagKey = GenerateFlagKey(entityGUID, userGUID);
                return _FlagDictionary.ContainsKey(flagKey);
            }

            private static string GenerateFlagKey(string entityGUID, string userGUID)
            {
                return entityGUID + "&" + userGUID;
            }
        }

    At the very beginning of  PostUpdate event handler, use the helper class to check if this event is bypassed

     public override void PostUpdate(CalloutUserContext userContext, CalloutEntityContext entityContext,
                string preImageEntityXml, string postImageEntityXml)
            {

                if (CalloutHelper.IsBypassCallout(entityContext.InstanceId.ToString(), userContext.UserId.ToString()))
                {
                    CalloutHelper.ResetBypassCalloutFlag(entityContext.InstanceId.ToString(), userContext.UserId.ToString());//reset flag
                    return;//skip this callouts as it is flaged to be bypassed
                }

                 // your PostUpdate logic goes there

                 // code to call CRM web service to update this entity

    CalloutHelper.SetBypassCalloutFlag(
    entityContext.InstanceId.ToString(), userContext.UserId.ToString());//set flag

    }

    You may have found that the key of the flag is based on combination of entity GUID and user GUID, this is assuming that one user cannot update the same entity twice simutaniously

    [Update 2007-10-22]: In callouts code when you want to update a CRM entity through the CRM web service, please ensure you use impersonation to call the web service. This will make sure you get correct userContext.UserId to make above code work. - see how to do impersonation http://msdn2.microsoft.com/en-us/library/aa682071.aspx

    发表于 @ 2007年07月24日 21:28:00|评论(loading...)|编辑

    新一篇: 通过了PMP考试 | 旧一篇: MS CRM Callouts Tip - 在Callouts中调用log4net

    评论:没有评论。

    发表评论  


    登录
    Csdn Blog version 3.1a
    Copyright © James Zhou