I am trying to get the binary content of an XML file via HTTP, but the server just wants to give me some kind of interpreted format (which removes \ r for each \ r \ n).
My HTTP GET request is simple: "GET http: //% s% s% s HTTP / 1.0 \ r \ nConnection: Keep-Alive \ r \ n \ r \ n"
It works for extensions other than .xml. And if I change .xml to .notxml, it works.
So, I am looking for a way for binary content without any changes to the file.
Thanks in advance.
source share