Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
130 views

Which context.xml is used First

On my Tomcat 6.0.x I have a context.xml file in the conf directory and I also have a context.xml in the META-INF directory of a project deployed from netbeans6.9.1. The context.xml contains the ...
3
votes
1answer
398 views

JBoss JNP as standalone server and using Resource configs from tomcat's context.xml

I have a couple of modules which now have the need of JNDI. One of these modules runs via Apache Tomcat while the rest run standalone as J2SE application. I was able to configure the module which ...
3
votes
2answers
8k views

Understanding context.xml in tomcat 6

I created a mainly empty dynamic web project in eclipse. It has no servlets no jsp files The web.xml is <?xml version="1.0" encoding="UTF-8"?> <web-app ...
2
votes
1answer
472 views

Tomcat 6 doesn't copy my context.xml

Everthing I've read about Tomcat seems to indicate that when I deploy my web application, Tomcat will take my context.xml file, copy it to <tomcat-dir><engine-name><host> and rename ...
2
votes
1answer
423 views

Migration Apache Tomcat 6 project with context.xml to GlassFish

I have application originally developed for Tomcat. There is context.xml file in META-INF using for creating datasource. As was mentioned here glassfish has support of context.xml file from Tomcat. I ...
2
votes
1answer
1k views

Why use Tomcat's context.xml files to declare DBCP resources?

Im having trouble understanding why I would use a context.xml file to declare a resource, in my case a database connection pool. Hopefully I've got my facts straight in the following arguments against ...
1
vote
1answer
307 views

Placing MySQL connector JAR in WEB-INF/lib of my WAR instead of in tomcat lib making j_security_check fail

I want my webapp to use the MySQL connector JAR present in web-inf/lib . But j-security_check dosen't work when i do it. When I place the jar in tomcat lib folder it works fine. But I have purchased a ...
1
vote
1answer
905 views

Custom Tomcat Valve Configuration

I wrote a custom Tomcat valve. (I'm using Tomcat 6.0.24 and Java 1.6) Here's the XML element where I declare my valve: <Valve className="mypkg.MyValve" foo="bar"/> When I put this ...
1
vote
1answer
82 views

How to set the path of web app in META-INF/context.xml in Jetty?

I know how to do it in Tomcat configuration but how to do the same in Jetty server?
0
votes
1answer
62 views

config.xml vs web.xml in web application

I am developing a small web application application. The objective is to create one welcome index.html page with Ajax + one servlet to handle ajax requests. Although I thought I would be fine with a ...
0
votes
1answer
71 views

META-INF/context.xml file for Tomcat and Glassfish

As you know we can manage our JNDI lookup resources with a file named context.xml in our meta-inf when we are deploy the war module on Tomcat. But what we can do the same thing in Glassfish? How to ...
0
votes
1answer
266 views

Tomcat6 ignores META-INF/context.xml

Tomcat6 keeps ignoring my META-INF/context.xml. I keep getting "Name tt is not bound in this Context" when I try to look up "tt" (please see 'details'). When I put the content of ...
0
votes
1answer
144 views

External Web Module in Eclipse EE Helios

When I try to add an external web module into Tomcat, I observe the server.xml under workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp1/conf has been added <Context docBase="C:\App1" ...
0
votes
1answer
219 views

Custom Tomcat Valve contained in web app WAR file

I'm looking to implement a custom Valve and configuring it using META-INF/context.xml. At the moment though, when context.xml is parsed during deployment, Tomcat (6.0.32) dies with a ...
0
votes
1answer
311 views

Moving contents of META-INF/context.xml to tomcat/conf

We are trying to take the environment specific configuration settings out of our war files, so we can deploy the same war file to dev/test/prod tomcat servers and not have to change the contents of ...
0
votes
1answer
56 views

#define STRING equivalent in Tomcat Java App

I have a tomcat app that needs to write to a file in a particular directory that is different depending on where the application is deployed (windows host v linux host, etc..). The class object that ...
0
votes
2answers
271 views

Web application specific form authenticator under Tomcat 6

With your help I have successfully resolved a question that I have asked here. I have developed a custom Tomcat authenticator for the web application, and currently the authenticator and its ...
0
votes
1answer
549 views

HTTP Status 404 after deploying a web application with a custom realm to Tomcat 6

I develop a web application for Tomcat 6, and I'm face to face with a problem I don't know how to resolve. Let's consider the following small scenario. Imagine that it's required to authenticate users ...