vote up 0 vote down star

I've seen this post:  characters appended to the begining of each file.

In that case, the author was manually reading the source file and writing the contents. In my case, I'm abstracting it away via HttpRequest.TransmitFile():

public void ProcessRequest(HttpContext context)
{
    HttpRequest req = context.Request;
    HttpResponse resp = context.Response;

    resp.ContentType = "application/javascript";

    resp.TransmitFile("foo.js");
    resp.TransmitFile("bar.js");
    resp.TransmitFile("baz.js");
}

The .js files are indeed encoded in UTF-8. This means the  BOM incorrectly appears at the beginning of each but the first file.

The nice things about TransmitFile() are that (a) it abstracts away the entire reading+writing process, and (b) it's optimized to not read the files into memory first -- which is hugely important when the files are large and/or you have many concurrent requests. But the flip side is that I'm not able to re-encode it into UTF-8 without the BOM. (I guess this is an example of a leaky abstraction.)

Is there any elegant way to solve this problem? Thanks!

flag

50% accept rate
Is this actually a problem in practice? The BOM is a whitespace character (zero-width nonbreaking space, code point U+FFFE). Is the JS interpreter choking on it? – Jeffrey Hantin Sep 4 at 0:10
Most importantly, IE7 and below choke on it (invalid character). Less important but still annoying, JSLint chokes on it. – Aseem Kishore Sep 4 at 18:01
I don't think TransmitFile actually does any magic optimizations for transmitting, nothing you couldn't recreate with stream read/write pumps – meandmycode Sep 6 at 14:17

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.