0
votes
1answer
25 views

Communicating with Linux scripts from php web

I'm building a web application that helps people improve their English pronunciation for some words. The website displays a sentence for the user, and he/she speaks it and then press "Results" button. ...
-1
votes
1answer
73 views

child of parent saying i finished in c++?

I'm trying to keep a child running while parent is still processing , pausing/resuming the child process according to specefic order : eg :1-parent 2-child 3-parent 4-child int main(){ int pid = ...
-2
votes
1answer
87 views

Java daemon with web frontend communication

I am starting a new Java project and am stuck at the architectural stage. The idea is to create a Java daemon process (I am designing this for Linux) which will have a web frontend (jsp?, php?, ...) ...
1
vote
1answer
141 views

MPICH communication failed

I have a simple MPICH program in which processes send & receive messages from each other in a Ring order. I've setup to 2 identical virtual machine, and made sure network is working fine. I've ...
0
votes
3answers
91 views

communication between OS services with c++

I am developing 2 Windows services, one of them will send pictures and word files to other and other service will give a string answer. That services are in same computer. I will develop same ...
1
vote
0answers
46 views

linux domain socket credentials : how to check two scheduled process have same cron ancestor

Let's say i have some scott user. In scott's crontab, i have two tasks scheduled : task1 is sort of "server" task which wraps some information and serve it through unix domain socket (task process ...
0
votes
1answer
190 views

Serial communication with scilab in Linux

Can you please provide some examples of serial communication with scilab in Linux. When I gave the command: h=openserial(1,"9600,n,8,1"); I am getting the following error: ...
1
vote
2answers
108 views

Can embedded Linux meet a 200ms timing requirement?

I'm working on an embedded Linux project where we need to ACK a message from the serial port within 200ms. If I'm not using some real-time variant then won't it be impossible to guarantee Linux would ...
1
vote
2answers
400 views

Simple Linux pipe program, data is not recieved

I have a simple Linux C program that I'm writing to help me better understand IPC, right now I'm trying to build it with pipes. I have a single code base that I run in two different terminal windows ...
0
votes
1answer
279 views

Kernel module get data from user space

What is the proper way of sending some data to a loaded and running kernel module, without using netlink and without using features that may not be in place (e.g. debugfs)? I'd like to see a clean ...
0
votes
1answer
944 views

Pair Android Bluetooth without passkey to PC

my issue is that I have a PC host to manage Bluetooth connections in a wide room, e.g. a shopping center. And I want that any customer who wants to pair to that host, which provides a service, do it ...
0
votes
4answers
191 views

Delay the communication between two threads

I have two threads (I am using pthreads on GNU/Linux). Now they are sharing information using global variables (I know, it's not nice). At the end of each cycle they have to send the value of 5 ...
1
vote
1answer
183 views

Communication between two Perl processes in a daemon / client setup. What is it called?

I'm writing a daemon that interfaces with a USB device (an Arduino). This daemon is continuously aware of the current state. Now I want to be able to interface with this daemon through a client ...
1
vote
1answer
972 views

Linux C++ write string to COM port, read back response?

I am trying to write to the /dev/ttyACM0 port. In the command line shell I can write the string ":35\n" to the sensor I have plugged in to that port, and via putty listening on the port I can see it ...
0
votes
1answer
283 views

Communication between C# running on Windows and C running on linux with protobuf

I have a server application running on Linux. This application was developed using protobuf c and protobuf.rpc.c files for RPC communication. I have a client application which was running on ...
1
vote
2answers
2k views

Two-Way Parent Child Communication Using 2 Pipes in C on Linux

I'm trying to create a two-way communication between parent and child processes using 2 pipes using C on Linux. The parent is my program and the child is just a random program (say "cat"). I try to ...
2
votes
1answer
3k views

Java Comm API Package download [duplicate]

Possible Duplicate: Where can I get to download Java comm api? I'm looking for a link to download sun's javax.comm package for Ubuntu(linux x86 and x64). I looked at this link: ...
1
vote
0answers
87 views

Eclipse ECF not working with our own XMPP server

We're using prosody with SSL/TLS. Chat works perfectly fine, but ECF just fails completely - nothing in the logs at all. Sorry if I'm vague, but does anyone have a clue what's going on? Something ...
1
vote
4answers
989 views

How to send sms by connecting a phone to a Ubuntu machine? [closed]

I am writing a PHP script from which i want to send sms. I know smsgateways are easy and cheap...But somehow we are planning to attach a cell phone to the machine ....and send sms using that ...
0
votes
5answers
1k views

Linux Bash Input

Have a question about linux bash. I want to start a program and then send input to it. Normally in de terminal I do just, ./chat and then type something. I dont know how it should be in bash, i tried ...
2
votes
2answers
684 views

Async C++ Communication Library for Linux (and Windows)

I'm looking for a communications library (socket, possibly IPC as well) for usage in C++ on Linux, if possible also on Windows if it's platform independent. It should be async. I tried the Boost Asio ...
2
votes
2answers
132 views

How to share datas between Ruby and c?

There is a Ruby process and has a string var named "switch", and the "switch" will be updated by user. There are also 2 C daemon process, which need to access the "switch" in a loop and decide the ...
2
votes
3answers
916 views

Reliable bidirectional communication to a Linux process?

What is the reliable way of implementing bidirectional communication to a Linux process? I see that popen does not seem to support "r" and "w" access at the same time... or at least that's what is ...
0
votes
3answers
616 views

Communication between Windows Client and Linux Server

I want to provide my colleagues with an interface (using Windows Forms or WPF) to control the states of virtual machines (KVM based) on a linux host. On the command line of this server, I'm using a ...
2
votes
7answers
2k views

What is the best way for interprocessor communication in Linux?

I have two CPUs on the chip and they have a shared memory. This is not a SMP architecture. Just two CPUs on the chip with shared memory. There is a Unix-like operating system on the first CPU and ...
6
votes
3answers
1k views

Linux/Mac OS X equivalents for Windows Communication Foundation

--edit-- What application development frameworks/component models for Linux and Mac OS X are analogous to Windows Communication Foundation & COM, which provide high level IPC mechanisms for ...