Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Application server for C programs?

Writer Sophia Terry

I'm writing some programs in C that will run in a distributed environment. Is there anything like an application server for C that provides clustering, monitoring, logging, etc?

2 Answers

Application servers are more like a Java and Python and OOP thing. But surely there are "object request broker" models that are implemented in C, just can just add the libraries to your C program. You can provide us a little more details about your environment, I use Visual Studio on Windows and the clang compiler and gcc on Linux and SunOS. If you study the Q&A on various programming sites here, like SO that are tagged C programming and application server you will broaden and deepen your knowledge.

There are application servers for C, for example Enduro/X or Tuxedo. Each compiled executable operates as a "server" process which provides services. These platforms monitors them, reboots if crashed and provides load balancing features. Also middleware options are available.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy