My planned application has two parts:

A) A lightweight "communicator" written in C which runs on a Windows computer and reads data from a hardware device, then sends that data over a socket connection.

B) A "display" app written in actionscript, which presents the data received over the socket graphically. This could run on the same device or another one.

I've been a little stuck on this basic socket communication for a while. I've not really used sockets before but it did seem like the correct path to go down for what I wanted to achieve.

At the moment, I seem to have no trouble sending messages from B -> A, and displaying them with printf etc (as a debugging measure), but when I try to send date from A -> B, the flash app does nothing. I've set up listeners as specified in the example here

The possible points of failure (as far as I can see) are:

1) I'm not sending the data correctly from A 2) The relevant ProgressEvent.SOCKET_DATA event is not firing at B when data is received 3) The connection has not been correctly established between A & B (although being able to send data from B->A rules this out, no?)

for 1) I'm using winsock2.h with:

iSendResult = send(ClientSocket, "RogerRoger, Acknowledged!", 25, 0);

for 2) I have no idea what might be going on... are there security issues I need to be thinking about? This suggests that maybe I should have some sort of socket policy file, which I haven't specified and don't really know anything about. Might that be what's causing me pain? Would the absence of one block communication in only one direction? I'm so confused!

Any bugfixing tips would be greatly appreciated as well!

For background, I'm a "lapsed" programmer coming at this project after a long period of not coding much, so I may well be missing something obvious...

Many thanks!

link|improve this question
Ok, so looking at this again today and it seems like none of the events are firing, not even the CONNECT even, which should trigger when a connection has been made. Am I wrong in thinking that my ability to send data from B->A implies that a connection has been established? – BigglesB Jan 29 at 13:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.