@Albin_Issac : The code iterates through user groups . User user = (User) userManager.getAuthorizable("userId");Iterator<Group> groups = user.declaredMemberOf();while (groups.hasNext()) {Group group = groups.next();//some logic goes here..} @Andrew_Khoury : Thanks for creating a ticket. Yes ,the i...
Hi Albin, I have visited the given link , but unfortunately it doesn't resolve my issue. It gives the exception in OOTB classes when we are doing iterator.next() ,hence i am unsure about it. Thanks,Pallavi
I am getting concurrencyModificationException when I try to iterate through Authorizable.declaredMemberOf() which is OOTB.The issue occurs intermittently and not always . I am not modifying the original list any where. Please let me know what should be done in this case.Please see some stack trace ...
Hi @Jörg_Hoh Thanks for the comments . We haven't closed it in the code . We are facing this issue in the OOTB Abstract Forum and Abstract Comment classes.The issue is mainly occurring when multiple users try to reload a page at a time.
We are getting sling exception when multiple users load a page or when 2 actions are performed simultaneously .The log says resolver is already closed , but the resolver is not closed in the code explicitly .We have extended SCF Forum component and created a custom component which is being used in t...
We have a component which extends Forum component . We use Mongo for storage.Upon save operation, it creates additional elements(divs) in View . Though the save operation was called once and entry in Mongo is stored only once.Does any 1 have any idea ,why in view multiple elements are created ?
How can we call from 1 view to another in Social community framework ? We have a use case in our project where we have 2 views : i) View1 which extends Journal ii)View2 which extends Topic ViewThere is a button present in View2 with some functionality .The current requirement is to expose the same b...
I am getting error while loading page containing community component . Please let me know if you have idea on the below error :com.adobe.cq.social.srp.utilities.impl.InternalTranslationUtilitiesImpl Error getting common store language[Ljava.lang.StackTraceElement;@167851Wanted to know when this erro...