0
votes
2answers
11 views
How do I change the location of index.jsp in a war file
I have the following project structure:
myproject
- src
- WebContent
- META-INF
- WEB-INF
- jsp
…
0
votes
3answers
26 views
web.xml URL pattern matching question for Tomcat
I'd like to use this kind of a pattern for my Java web app:
<url-pattern>/*/test.html</url-pattern>
and then parse the URL in the servlet to get what the value of the star is, and use …
1
vote
2answers
45 views
web.xml filter-mapping not forwarding to struts
Hello,
I am trying to do something trivial and can't see what I'm missing. I have the following web.xml...
<filter>
<filter-name>struts2</filter-name>
…
0
votes
4answers
71 views
web.xml - Java Servlet Filters - Not being run before processing the JSP page (on Tomcat)
I am fairly new to Servlet Filters and have basically joined a project using them and added an additional filter to the web.xml file (deployed on Tomcat 5.5).
I am 95% sure that at some point it was …
0
votes
0answers
33 views
Jetty Filter Problem (ClassNotFoundException)
Hi!
I have a groovy project running under jetty for development and under tomcat for production.
I wrote a filter called URLFilter
I've added the following lines in web.xml
(actually I've added to …
2
votes
2answers
93 views
Mapping both static and dynamic files in Tomcat/Spring?
I was using the following in web.xml to configure a servlet to dynamically generate PDFs.
<servlet-mapping>
<servlet-name>pdfServlet</servlet-name>
…
2
votes
2answers
345 views
Tomcat 6 - The requested resource … is not available.
I am trying to start developing with Java and the Stripes Framework. I have the following in my web.xml file
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app version="2.4" …
1
vote
1answer
99 views
Exclusive url-patterns in Tomcat web.xml descriptor
I am trying to redirect erroneous page requests - 404 errors - to a custom error page. In order for my servlet, instead of the root servlet, to handle these requests, I entered the following …
1
vote
1answer
64 views
TomCat 6: can welcome page be inside WEB-INF?
I'm following this example to get Spring up & running: http://static.springsource.org/docs/Spring-MVC-step-by-step/part2.html
What they do is move all .jsp files inside the WEB-INF, to stop users …
0
votes
1answer
188 views
Referencing Environment Variables in web.xml
I'm pre-packaging a JSP web-app that relies on some file path settings found within web.xml. These settings are unknown at packaging time, because they reference a path the customer will set when …
0
votes
0answers
65 views
Problems Regarding j_security_check to authenticate Form
Hi,
I am new to a programming world world. I have a query regarding deployment descriptor in jboss. In web.xml there is login config that authorizes the form. I want to know how the …
0
votes
0answers
174 views
Modifying web.xml in weblogic 10.3
I have a web application that I am currently in the process of migrating from Oracle Application Server to Weblogic 10.3.1. The application uses a client-side filtering agent to validate a user before …
0
votes
0answers
112 views
Setup Tomcat XML welcome-file-list to actually forward to a different page?
The problem is this: IE likes caching my rootsite/, which may be different from rootsite/Index.jsp depending on whether the user is logged in. So in effect, users will log out, go to the first site, …
3
votes
1answer
67 views
How do you introspect web.xml from a servlet?
Is there a way for a servlet filter to get a list of all servlets and their mappings?
1
vote
1answer
448 views
Custom 404 using Spring DispatcherServlet
I've set up web.xml as below. I also have an annotation-based controller, which takes in any URL pattern and then goes to the corresponding jsp (I've set that up in the -servlet.xml). However, If I …
