Tomcat Section Index | Page 5
Cannot run Tomcat 4.0.1 under Linux (Suse 7.2)... getting Segmentation Fault.
As far as I know this has nothing to do with the system hardware.
Take a look at this page:
http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.1/
and you will see the following:
---...more
Where should I copy the class file of applet in Tomcat? Where should I copy respective HTML file?
HTML (and .JSP) files are placed under the webapps/ROOT directory under the installation directory (or other than ROOT if you've defined a different context). Applet .class files would then be pla...more
Why is Tomcat 4.0 so slow when connecting via a URLConnection?
Question continues:
When connecting to a servlet running under Tomcat 4.0.1 via a URLConnection ie:
URLConnection conn = (new URL("http://tomcatserver:8080/myapp/servlet1")).openConnection());
Res...more
Where is the isapi_redirect.dll ISAPI filter for Tomcat 4.0? For earlier version of Tomcat (3.x.x) there was an ISAPI filter for IIS that would redirect jsp requests to the Tomcat server. Is there a version of this DLL for Tomcat 4.0? If not, how can I accomplish the same functionality with 4.0 that I got with the ISAPI filter in 3.x.x?
Mike,
Actually the ISAPI filter for Tomcat 4.0 is still under development. The only real filter that has been developed is the one for Apache (since it is widely the most used web server). I'm sur...more
Problem with the makefile of mod_webapp on Solaris.
Additional information:
When trying to make the mod_webapp.so, on a Solaris 2.6, this error is prompted:
make[]: Entering directory "lib"
make[]: Invoking "make build"
make: Fatal error in reader...more
I am running Tomcat as an NT service. How do I write a command file or a batch file that should run a Java class (or a jar file) and restart the Tomcat service (so that the java class results can take effect)?
You can do a youscript.cmd file and put 4 lines into it
cd directorywithYourClass
java YourClass
net stop Tomcat
net start Tomcat
that's it, assuming that you named your service Tomcat.
more
How to run Tomcat as a background service from a telnet session?
Additional information:
First I telneted the server, and then started up tomcat service at background. It worked well.
But when I quit from the server, I found I couldn't browse the jsp pages. I t...more
Does anyone know where I can obtain the DTD for Tomcat 4.0.1's server.xml ?
DTD for Tomcat 4.0.1
Does anyone know where I can obtain the DTD for Tomcat 4.0.1's server.xml ?
Tomcat + Apache + Cocoon Performance bottleneck. How to find out the bottleneck is on Apache or tomcat or Cocoon? What can we do to improve the performance?
Tomcat + Apache + Cocoon Performance bottleneck
How to find out the bottleneck is on Apache or tomcat or Cocoon? What can we do to improve the performance?
Different webapps using different log4j.properties file.
Different webapps using different log4j.properties file.
Is commercial support available for Tomcat?
Is commercial support available for Tomcat?
My company is interested in purchasing technical support (24x7) for Tomcat (on Solaris). Does anybody know of any organisation able to offer a support se...more
I am attempting to configure Tomcat's WebDav application (http://localhost:8080/webdav) to allow everyone to view the directory. However I need authorized users to be able to edit the content of the directory.
Tomcat and WebDav Security
I am attempting to configure Tomcat's WebDav application (http://localhost:8080/webdav) to allow everyone to view the directory. However I need authorized users to be a...more
Big fall of performance in integrating Apache with Tomcat.
Additional Info
Following manual suggestions, I've integrated Tomcat 3.2 with Apache, using mod_jk, in order to have a more robust and fast product to manage the static html pages.
But, testing th...more
Using Jasper and taglibs, how do I avoid the error "Code of a method longer than 65535 bytes"?
Using Jasper and taglibs, how do I avoid the error "Code of a method longer than 65535 bytes"?
I am working with Tomcat 3.2.x. I made a taglibrary (that includes just one tag, for testing) and imp...more
Where to put ResourceBundle files so my webapp can find them?
Where to put ResourceBundle files so my webapp can find them?
I trying to run servlet which has code for internationalization .Where to put ResourceBundle property files in tomcat.I have tomcat ve...more