Hi community, i'm working on a client new website.the existing website in also on AEM 6.5 and the new it's a version with new feature. current site is mapped on:/content/currentSite/*and the new on:/content/newSite/* I have the question about the suggestion query:1) in the new site, i need to index ...
@Kishore_Kumar_ meanwhile i tried with dispatcher workaround.. and the result is like the follow: The xml is cutted in proximity of the special char "€". Sling issue in open since 2019 :|..
Not yet. Before to ask at client the dispatcher change, i would better understand possible other solution. As per now, in localhost (with author only), i'm receiving the issue above.
" Is it causing any issue due to this charset ? " yeah i think, in particular, in the JCR i have saved the char €, and in the XML a receive the char ?.I think that the issue is related to the response content type. Any other suggest?
yes.. my issue is related to the response content-type charset wrong. also adding the "marshaller.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");"i receiving the same result on response content-type.. reading this article "https://howtodoinjava.com/jaxb/marshaller-example/",seems that utf-8 is the d...
Hi community, i developed a custom XML exporter:"/** * XML export used to generate XML render on servlets. */@Component(service = ModelExporter.class)public class CustomXmlExporter implements ModelExporter { private static final Logger LOG = LoggerFactory.getLogger(CustomXmlExporter.class); @O...