Expand my Community achievements bar.

SOLVED

Trouble in changing a Deprecated User Service Mapping

Avatar

Level 1

In my project, at localhost:4502/system/console/configMgr, I have an entry: Apache Sling Service User Mapper Service Amendment

There, among the many Mappings that I have, is one that has this value: gs4tr-globallink-adaptors-aem.core:gl-service=gl-service

mihailfi_0-1717591819470.png

 


I got a warning that it is deprecated and, instead, it should be: gs4tr-globallink-adaptors-aem.core:gl-service=[gl-service] 

I tried to create a config folder in the script:
path: \ui.config\src\main\content\jcr_root\apps\project\osgiconfig\config\org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.ammended~gl-service.cfg.json

code: 

{
  "user.mapping": [
    "gs4tr-globallink-adaptors-aem.core:gl-service=[gl-service]"
  ]
}
Instead, it created a new variable:
mihailfi_1-1717592225166.png

and the deprecated mapping remained there.

Did someone had this issue or has any idea about a possible solution?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @mihailfi 

 

You have used the correct way to create configuration for user mapping, the only issue with your configuration is the spelling mistake in your service pid that is

 

You have used an extra 'm' letter in amended word in your configuration \ui.config\src\main\content\jcr_root\apps\project\osgiconfig\config\org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.ammended~gl-service.cfg.json

 

Try correcting the pid and your configuration will work.

 

Hope it helps!

Thanks

Nupur

View solution in original post

3 Replies

Avatar

Level 10

Hi @mihailfi ,

It looks like you are trying to create a new configuration file for the Service User Mapper Service Amendment. However, the existing deprecated mapping is still present because it is defined in a different configuration file.

To update the existing mapping, you will need to edit the configuration file that contains the deprecated mapping. You can do this by following these steps:

1. Go to the Apache Sling Service User Mapper Service Amendment configuration page at localhost:4502/system/console/configMgr/org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended

2. Find the mapping that you want to update (gs4tr-globallink-adaptors-aem.core:gl-service=gl-service) and click on the "pencil" icon to edit it.

3. Update the mapping value to gs4tr-globallink-adaptors-aem.core:gl-service=[gl-service] and click "Save".

4. Verify that the updated mapping is now present in the configuration.

Note that if you want to remove the deprecated mapping entirely, you can simply delete it from the configuration file.

Avatar

Community Advisor

@mihailfi 

Please assure that

  • you have updated the existing config in code-base with new value and it is covered in filters.xml
  • Assure the config picked up by OSGi console is the one you are modifying. It might be getting picked up from another location.
    • If you cannot get rid of or edit the existing configuration, create the new config under a runmode with matches your instance the best. Example: if existing config is in config.author, you can create under config.author.dev (it would have more preferrance) 

Aanchal Sikka

Avatar

Correct answer by
Community Advisor

Hi @mihailfi 

 

You have used the correct way to create configuration for user mapping, the only issue with your configuration is the spelling mistake in your service pid that is

 

You have used an extra 'm' letter in amended word in your configuration \ui.config\src\main\content\jcr_root\apps\project\osgiconfig\config\org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.ammended~gl-service.cfg.json

 

Try correcting the pid and your configuration will work.

 

Hope it helps!

Thanks

Nupur