vote up 0 vote down star

I'm having trouble sending out a simple HTTP request using Actionscript 3's Socket() object. My onConnect listener is below:

function sConnect(e:Event):void {
    trace('connected');
    s.writeUTFBytes('GET /outernet/client/rss/reddit-feeds HTTP/1.1\r\n');
    s.writeUTFBytes('Host: 208.43.71.50:8080\r\n');
    s.writeUTFBytes('Connection: Keep-alive\r\n');
    s.flush();
}

Using a packet sniffer, I can see the request does indeed get sent to the server, but the packet sniffer doesn't identify the protocol as HTTP like it does with other HTTP services. When I run this, the server just eventually disconnects me. I have tried to connect to other simple Apache Servers and just get a malformed request error.

What am I missing here?

flag

20% accept rate

5 Answers

vote up 8 vote down

You have to write another "\r\n" to the stream before the flush to tell the HTTP server that you're finished sending the headers.

link|flag
vote up 1 vote down

Turns out I wasn't sending a blank line to the HTTP server after my request. The following minor tweak from the original works:

function sConnect(e:Event):void {
    trace('connected');
    s.writeUTFBytes('GET /outernet/client/rss/reddit-feeds HTTP/1.1\r\n');
    s.writeUTFBytes('Host: 208.43.71.50:8080\r\n');
    s.writeUTFBytes('Connection: Keep-alive\r\n\r\n');
    s.flush();
}

Note the extra \r\n after the last writeUTFBytes. Thanks anyway Brian.

Edit: Thanks Graeme.

link|flag
vote up 0 vote down

Instead of using UTF, try with ANSI/ASCII. The encoding may be the cause of the issue.

link|flag
vote up 0 vote down

Thanks for the suggestion Brian. No luck though. I changed my onConnect function to:

function sConnect(e:Event):void {
    trace('connected');
    s.writeMultiByte('GET /outernet/client/rss/reddit-feeds HTTP/1.1\r\n', 'ascii');
    s.writeMultiByte('Host: 208.43.71.50:8080\r\n', 'ascii');
    s.writeMultiByte('Connection: Keep-alive\r\n', 'ascii');
    s.flush();
}

No difference.

link|flag
I'm referring to a single-byte encoding. Multi-byte will lead to a similar issue. – Brian Jan 5 at 22:42
vote up 0 vote down

I just wasted a lot of time tracking down what is apparently a serious bug in some combinations of Flash 10 and Linux with writeMultiByte(). I would be very dubious about using writeMultiByte().

I hope this helps you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.