Web API,Web Service SharePoint对象操作报Operation is not valid due to the current state of the object解决方案


Web API,Web Service SharePoint对象操作报Operation is not valid due to the current state of the object解决方案,这是因为当前的user信息不一致导致的,添加HttpContext.Current = null;,解决,要类似这样:

SPSecurity.RunWithElevatedPrivileges(delegate()
            {
                HttpContext.Current = null;
                using (SPSite site = new SPSite(targetWeb))
                {
                    using (SPWeb web = site.OpenWeb())
                    {
                        SPList targetlist = web.Lists[targetList];
                        foreach (ItemType item in import.item)
                        {
   ...
                        }
                    }
                }
            });


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM