On 21 Jan 2003, Ed Robbins wrote:
> Date: 21 Jan 2003 21:49:00 -0500 > From: Ed Robbins <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: Tomcat Users List <[EMAIL PROTECTED]> > Subject: Re: JDBC authentication > > This was exactly my problem, I moved the security constraint out of the > server.xml file and put it into the web.xml for the web app and it > magically started working:-) The only problem I have now is that I > can't do a blanket url-mapping like > > <url-mapping>/*</url-mapping> > > or > > <url-mapping>/IpnDownload/*</url-mapping> > What's a <url-mapping>? The valid element in a web.xml file is <url-pattern>, and either of the above would be valid. But "/*.jsp" would not be valid -- you have to use "*.jsp" instead. Craig -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>