Txt file and Http request

I am trying to upload a .txt file to an http address. The problem is that the information is published on a single line, that is: The .txt file contains the following numbers:
0 10
1 10
2 10
3 10
4 10
But when checking the http address, it is displayed as:
0 10 1 10 2 10 3 10 4 10
I attach a photo of the nodes that I am using. I

hope someone can help me to solve this problem.

without seeing the actual binary of the data transferred it's hard to tell if there is really a problem. It may just be the way it is displayed.

What http headers are you setting in the flow?

If you set content-type to text/plain it'll tell the browser to display it as-is and not try to treat it like html (which ignores whitespace like newlines)

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.