httpParam type="body" reads it's charset from the mimeType field

Description

Check here: https://github.com/lucee/Lucee/blob/3bec3cae8d875fdb1023afc887b4b172553cbbbd/core/src/main/java/lucee/runtime/tag/Http.java#L895

mimeType is supposed to only affect type="File". Instead it is used to determine the charset of the body.

So if I pass a string body with utf-8 chars, the string is implicitly converted to stream with some default charset, which messes up the utf-8 chars.

Environment

None

Activity

Show:

Zac Spitzer 21 January 2025 at 14:51

https://github.com/lucee/Lucee/pull/2480

This needs to be tested a lot, don’t want to break existing code!

Konstantinos Liakos 26 July 2016 at 12:04

This problem appeared in Lucee 5, while 4.5 worked fine.

Konstantinos Liakos 26 July 2016 at 11:17

Quick but not ideal solution: pass CharsetDecode(yourString, "utf-8") to your body.

Details

Assignee

Reporter

Priority

New Issue warning screen

Before you create a new Issue, please post to the mailing list first https://dev.lucee.org

Once the issue has been verified, one of the Lucee team will ask you to file an issue

Affects versions

Created 26 July 2016 at 11:15
Updated 21 January 2025 at 14:51

Flag notifications