I set the OSGI Configuration "Default Parameter Encoding" in "Apache Sling Request Parameter Handling" to UTF-8 but query string request parameters are still decoded as ISO-Latin-1.
When I set the the additional request parameter "_charset_=UTF-8" it works.
Is there any reason that the OSGI Configuration "Default Parameter Encoding" is not sufficient?
The problem is a NullpointerException in the configuration class "RequestParameterSupportConfigurer". One can only avoid this by setting the property "Temporary File Location" to an absolute path. Else the code tries to access a method on
final SlingSettingsService settings = (SlingSettingsService) context.locateService("SlingSettings");
The problem is a NullpointerException in the configuration class "RequestParameterSupportConfigurer". One can only avoid this by setting the property "Temporary File Location" to an absolute path. Else the code tries to access a method on
final SlingSettingsService settings = (SlingSettingsService) context.locateService("SlingSettings");