Please set the content-type header to either text/xml or application/xml instead of text/html, as many podcast apps will only take valid xml files.
An example snippet on how to do it:
var http = require('http');
http.createServer(function (req, res) {
res.setHeader("content-type", "text/xml");
}).listen(80);
Please set the
content-typeheader to eithertext/xmlorapplication/xmlinstead oftext/html, as many podcast apps will only take validxmlfiles.An example snippet on how to do it: