Displaying special characters on AEM
I have couple files that have special french characters.
Wondering how to display them on AEM using ISO-8859-1 charset?
Thanks
I have couple files that have special french characters.
Wondering how to display them on AEM using ISO-8859-1 charset?
Thanks
You stated that your use case does involve a workflow.
"Sorry...basically the original file is a XML file which goes through a workflow that creates a text rendition of it pulling only certain information"
You can address this use case by programming a custom workflow step that reads the text - ( including special chars from XML) and writes the special chars to the AEM repos using the JCR API.
I pointed you to code that you can use in your workflow. See article above. So in your custom workflow step - you would use JCR API code like:
Node.setProperty("id", id);
where id would contain the special char.
There is no out of the box solution from this use case.
That is why we wrote the special char article in the first place - to show how to work with special chars in AEM. This one just involves workflows.
If you are not familiar with writing a custom workflow step - read this AEM article:
https://helpx.adobe.com/experience-manager/using/creating-custom-aem-workflow-steps.html
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.