Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

Live data transfer between two application?

OpenStudy (anonymous):

There are two application; lets call them application A and application B Application A output bunch of signals(data) every second. Application A has programming environment which allow me to customize. I would like to write a program that would send those data somewhere where application B can access it

OpenStudy (anonymous):

any suggestion?

OpenStudy (lyrae):

You can have them communicating over localhost using sockets and in application B provide some kind of simple API that would accept incomming data.

OpenStudy (anonymous):

Can you give me some reference documents on Sockets.

OpenStudy (lyrae):

Which programming language?

OpenStudy (anonymous):

visual basic

OpenStudy (lyrae):

Sending application (A) is client and receiving application (B) is server.

OpenStudy (anonymous):

I see , this will surely help me with my project. I appreciate your help sir.

OpenStudy (lyrae):

Anytime :)

OpenStudy (rsmith6559):

Networking (sockets) is one way to do this. Shared memory/IPC (InterProcess Communications) and the file system are others. If application A has already been written, then it's ability to send info is what it is. Which method you write application B to use as input is basically set in stone. If app A can at least spew it's data to stdout, then you can pipe it into app B in the shell.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!