Hi, iam trying to access a c++ programm from a java servlet. The point
is that the main programm is written in c++ and now it shold have a
web interface using java servlets. I googled and googled but havent
found any solution for this problem.
> Hi, iam trying to access a c++ programm from a java servlet. The point
> is that the main programm is written in c++ and now it shold have a
> web interface using java servlets. I googled and googled but havent
> found any solution for this problem.
If by "access" you mean "make function calls to", you need to look into JNI.
If you mean "communicate to a C++ program running in another process" you
have many, many options, the simplest of which is probably communication via
a socket.