hi,
I've got a problem with Umlauts in a preprocessing script.
the channel reads a csv file. a preprocessing script is supposed to convert it to xml.
when the csv contains umlauts like 'ü', they appear in the 'View message->Raw message' tab as '?'.
I've even tries to replace umlauts with other characters like 'ue'. this doesn't work, so I think the problem might appear before the message gets into the preprocessor.
the different encodings in the channel source didn't help either.
message source (csv) :
raw message in mirth:
How can I make sure to keep the umlauts ?
I've got a problem with Umlauts in a preprocessing script.
the channel reads a csv file. a preprocessing script is supposed to convert it to xml.
when the csv contains umlauts like 'ü', they appear in the 'View message->Raw message' tab as '?'.
I've even tries to replace umlauts with other characters like 'ue'. this doesn't work, so I think the problem might appear before the message gets into the preprocessor.
the different encodings in the channel source didn't help either.
message source (csv) :
Code:
123;14.05.2007;0;123456;Mustermann;Maria;Überweg 5;54321;Köln
raw message in mirth:
Code:
<Patient> <rgsnumber>123</rgsnumber> <date>14.05.2007</date> <bet>0</bet> <case_number>123456</case_number> <name>Mustermann</name> <sname>Maria</sname> <street>?berweg 5</street> <ar>54321</ar> <city>K?ln</city> </Patient>
Comment