Hi,
I am trying to get the contents of a gzip file located on the server.
This code only prints the binary content of the file.
var msgUrl = "../messages/"+compressedMessage+".gz";
objXml.open("GET",msgUrl,false);
objXml.send(null);
alert(objXml.responseText);
Any ideas how to get this working?
Thanks!