Hi Srikanth, I understand this was long back but did you get the route cause for the null values from httpRequest.getPathInfo() and httpRequest.getParameter("saml_login")
Hi, We have integrated AEM apps with Okta and to resolve one the issue when user got access at Okta but not in AEM due to saml connection between AEM and Okta. We added parameter in URL when user is redirecting from other application (outside from AEM) and trying to read the parameter in doFilter at...
I have added session.refresh(false) as suggested by you but getting same results. We have tried with even granting admin access for the session we are using to add new user to the group.
@lukasz-mThanks for the reply.I am getting newly added group in logs via below code :-//** To get members of group
Iterator<Authorizable> auth = cugGroup.getMembers();
while(auth.hasNext()) {
Authorizable authMember = auth.next();
log.info("Grp Member :: " + authMember.getID());
} However, n...
Hi,@Sanjay_Bangar @arunpatidar @Shubham_borole Thanks for the response.Below is the code snippet I am using. Code is executing successfully and I am getting recently added member in logs but same is not reflecting at userAdmin (https://author-server.adobecqms.net/useradmin) if(StringUtils.isNotEmpty...
Hi, I am trying to add member to group from code (via service) and user list from getMembers() is successfully fetching the newly added member details, however, when checking same at userAdmin (screen) then newly added member is not present in the group.Can anyone help me to find what I am missing t...