• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

what is tomcat and apache ?!

vijayimmune

Junior Member
he guys, I know the basic coding of java programming, I've programmed some of the basic programs of java in netbeans IDE, but I was thinking what is apache and tomcat, please help me with this, I will truely appreciate any help on this friends.:'(
 
Tomcat is a Java application server (it has nothing to do with Java applets). It allows you to write web applications using Java servlets or JSP pages. Apache is a web server designed to server static content (HTML files, image files, CSS files, etc.). If you are running Tomcat, you typically do not need to run Apache as well. Tomcat will server static content as well as dynamic servlet and JSP content just fine.

This guide should show you how to setup Tomcat with Netbeans.
 
Netbeans usually ships with apache and you just have to select the correct check box to install it during netbeans install...

Else RTFM. Asking questions is OK but this sounds like someone asking "What is the steering wheel for?"
 
Tomcat is a Java Servlet container and web server from the Jakarta project of the Apache software foundation. Learn for tomcat please check-http://jakarta.apache.org/tomcat.

while Apache is a open source or freely available Web server that is distributed under an "open source" license. Apache Version 2.0 runs on most UNIX-based operating systems such as Linux, Solaris, AIX etc.
Around 60% of Web sites on the Internet are using Apache web server.
 
Why don't you explain what you want to do? I've seen a few of your postings and you've been asking very general questions and the answers don't seem to help very much. It seems like you don't know very much about what you're asking. When that happens, people often ask the wrong questions. Tell us what you're working on and maybe we can guide you a bit better.
 
Apache Tomcat (or simply Tomcat, formerly also Jakarta Tomcat) is an open source web server and servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run.
 
Back
Top