Hi Team,
I am getting below error when submitting a form.Could you please let you know if you have any ideas
error converting typed value TypedValue[it=1134,v={4cef5fb4-6aa9-499c-99e1-34fbb0d20616@6291,{TypedValue[it=5246,v={335,C-2025-0335,,,Efficacy and safety of liposomal amphotericin B(AmBisome® ) versus Isavuconazole in patients with invasive Aspergillosis in liver transplant recipients ,,,CRDRF,DRF,<null>,,jiaqi wei,2025-09-13,<null>,110000.0,0,,0,,<null>,1,15144486065@163.com,2025-09-13 01:56:30.0,<null>,15144486065@163.com,2025-09-13 02:28:22.48,,1,Shawn.xiao,,0,}]}}] to XML in order to convert it to java type com.appiancorp.common.EntityData
Regards,
Sireesha
Discussion posts and replies are publicly visible
Try removing this character from your text "®"
Remove "®" special character from "AmBisome®" it cannot be properly converted to XML format.Additionally, check the multiple null values in your data. Ensure all required fields have default values instead of nulls before form submission.
The comments above about the special character are almost certainly on-point.
To help accomplish this, I would recommend sanitizing user input (particularly when it's more likely than normal to be copy-pasted from external fields) through the clean() function, which strips out all non-printable characters and is supposed to remove characters that would cause issues when inserting into the DB.