Hi all, I have a device which should be able to send HTTP GET requests to a server so that the device can send data to that server. I want the device to send the data to an Apache server running on my computer. Despite my very limited knowledge about the subject, it's nearly working but there is a hurdle which I need to overcome. I'm all googled out so I thought I'd ask here. HTTP server requests are terminated by carriage return & line feed characters (\r\n, <cr><lf>, ASCII codes 13 and 10). My device outputs two line feed characters (\n\n, <lf><lf>, ASCII codes 10 and 10) at the end of each line. There is no way to change this. The server does not respond to the HTTP requests from the device but it does respond to requests with both carriage return and line feed characters at the end. Can I configure Apache to respond to HTTP requests with only line feed characters at the end? Thanks in advance, Nick.