Please could you change in SessionObjectLayer.cs in your source code
at lines 502 and 529
(original version)
throw new InvalidOperationException(Xpo.Res.GetString(Xpo.Res.Security_SavingAnObjectWasProhibitedByTheRules));
(to proposed version)
throw new InvalidOperationException(String.Format("{0} {1}", Xpo.Res.GetString(Xpo.Res.Security_SavingAnObjectWasProhibitedByTheRules), saveItem.TheObject.GetType().ToString()));
Now it takes much effort to find missing permissions in some scenarios.
Thank you
Michal
Hi,
Thank you for the suggestion, Michal. We will take it into account.