Hi David,
Looks like it is an issue with the xmlhttprequest module we leverage to do HTTP-STREAMING on node:
https://github.com/driverdan/node-XMLHttpRequest
I fixed the issue in the module and I filled a pull request:
https://github.com/driverdan/node-XMLHttpRequest/pull/59
If and when the pull request is accepted the original owner has to push the fixed library to npm so that it may take a while before the fix is available through npm install
In the meantime you may clone my branch of the library (
https://github.com/mone/node-XMLHttpRequest ) on a folder on your pc, then go there and run
npm link
After that go into the folder where your node application is and call
npm link xmlhttprequest
At this point your client should be able to connect in HTTP-STREAMING mode.
HTH