Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • 2
    Have you thought about having the C program write to a lightweight queue and then have your web app be a client that queries the queue? Commented Feb 11, 2015 at 1:36
  • websockets? Commented Feb 11, 2015 at 6:08
  • cgi scripts can run any C code in the web server, and then its just matter of passing the data to correct place. Commented Feb 26, 2015 at 18:56
  • "Passing the data to the correct place" is the hard part I'm trying to figure out. I can run the C code with parameters, etc, just fine. I can even write a script to run the C binary. It's passing the data between the C code and web service that I'm trying to get nailed down. Commented Mar 3, 2015 at 19:40