SharePoint 2007 - Problém s WSS
Problém
Mám vlastní webovou službu, která zapisuje do listu. Vše proběhne v pořádku, až na poslední krok, kdy se ukládá položka. Vyskočí chyba Operation is not valid due to the current state of the object.
Řešení
Je potřeba vynulovat HttpContext, viz příklad.
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)
{
...
}
}
}
});
Odkazy
Operation is not valid due to the current state of the object at Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPContro
https://social.msdn.microsoft.com/Forums/en-US/32869ac6-4f47-46b8-accf-f56966ac9581/operation-is-not-valid-due-to-the-current-state-of-the-object-at?forum=sharepointdevelopmentlegacy&forum=sharepointdevelopmentlegacy