Encoding Dataset SET

Hi,

is it possible to set the Encoding of a Datafield to ISO-8859-1

Thanks,
Stefan

Not sure exactly if I understand what you want to do and why. Can you please explain me what you have planned. Thanks.

Jan, i have a XML File. Here i want to put some additional Entrys. The Problem is, my Software has problems with the charcode (Umlaute).

Inputfile:
image

Output with N8N Entrys:
image

Thanks,
Stefan

Is the data already wrong within n8n or only after you write it out to XML?

Yes,
After this function lookit:

return [
  {
  json: {
    
  },
  binary: {
    data: {
      data: Buffer.from( $node["Set2"].json["propertyName"]).toString('base64'),
      mimeType: "application/xml",
      fileExtension: 'xml',
      fileName: "SCH"+($node["JotForm Trigger"].json["rawRequest"]["Datum"]["year"]+$node["JotForm Trigger"].json["rawRequest"]["Datum"]["month"]+$node["JotForm Trigger"].json["rawRequest"]["Datum"]["day"]+$node["JotForm Trigger"].json["submissionID"])+".xml"
    }
  }
  }
]

Mmmh ?

Can you please post a full workflow with everything that is needed to reproduce it. I can then have a look. Thanks a lot!

Hi Jan,

same thing when i put some additional Overhead in a Webrequest like this:

image

UTF8 / ISO … Could it be the problem ?

Thanks,