Is it possible to run C++ in Apache Tomcat?

Can anybody please tell whether it is possible to run the C++ code in Apache Tomcat Application Server.I could not find any proper answer when i googled.
[167 byte] By [achyuthba] at [2007-11-27 8:41:31]
# 1
Tomcat is a java web server. 'nuff said I would say. The only way to invoke C++ code is by putting it in a java JNI compatible library and invoking it from java.
gimbal2a at 2007-7-12 20:40:32 > top of Java-index,Java Essentials,New To Java...
# 2
hirefer Java Native Interface possible reasons to call c++ or any other language method into java...
drvijayy2k2a at 2007-7-12 20:40:32 > top of Java-index,Java Essentials,New To Java...
# 3

> Tomcat is a java web server. 'nuff said I

> would say. The only way to invoke C++ code is by

> putting it in a java JNI compatible library and

> invoking it from java.

Not quite this simple. Tomcat can be configured to run CGI and, depending on what the c++ is doing, it may be possible to run it as CGI.

sabre150a at 2007-7-12 20:40:32 > top of Java-index,Java Essentials,New To Java...
# 4
Thank you all for the reply.I will do r&d from the points you gave.. :)
achyuthba at 2007-7-12 20:40:32 > top of Java-index,Java Essentials,New To Java...