I’m trying to get the binary content of an XML file through HTTP but the server just want to give me kind of interpreted format (wich removes \r for every \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 extention except .xml. And if I change the .xml in .notxml, it works.
So, I’m looking for a way to the binary content without any change in the file.
Thank you in advance.
It was caused by my FTP Client (FileZilla). If I transfer .nxml and rename in .xml by FTP, the file is OK.
Thanks for trying to help me.