Plugin Object Exporter unicode

Which IIQ version are you inquiring about?

8.2

Hello with Object exporter plugin we can download objects for example rules but there is a rule named “çaatão” and because oh the “special” characters the rule name exported are different.
How can I change the unicode or something like that in order to download the correct name
https://community.sailpoint.com/t5/Professional-Services/IdentityIQ-Object-Exporter-Plugin/ta-p/190179

Thank you all

Hi @RIsidoro

I suspect that this response might not be very helpful; however, a good practice in role creation is to avoid using special characters specific to any language. In this case, it would probably be easiest to change the role name to something else and revert to the original name after exporting it. Additionally, it is often a common practice to use English for such purposes. End users usually do not have the capability to configure or invoke roles from debug, so I see no need to create role names specific to any language. Regarding the plugin, I assume that in its original implementation, someone simply did not anticipate such special characters. A possible option, if you have the source code of this plugin, would be to extend its logic to replace special characters when retrieving roles.

Best regards

Hello
I believe the best option is to change the artifacts name. Do you know if there is any issue by do it ?

@RIsidoro You can customize executor class(executor=“com.sailpoint.pse.plugin.objectexporter.ObjectExporter”) in object exporter task, include those special characters in pattern so that it will not replace with underscore(_).

Where can I do this modification ?

@RIsidoro

  1. Create custom class by cloning logic from (com.sailpoint.pse.plugin.objectexporter.ObjectExporter) class
  2. Update the logic in custom class as mentioned above.
  3. Open ‘XML Object Exporter’ Task Definition in debug and replace executor class name with custom class

Hello
This makes a lot of sense but as this is a plugin downloaded where is the jar file with this class ?
Thank you