Ah, I think the lightbulb just went off. I think I can do this?
<servlet-mapping>
<servlet-name>EditObjectServlet</servlet-name>
<url-pattern>/foo/editobject/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>ReportServlet</servlet-name>
<url-pattern>/foo/reports/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>/foo/login/*</url-pattern>
</servlet-mapping>
Of course, right now I don't have the '/foo' in any of my url-patterns.
But if I put 'foo' there, I can ask the jkMount to map to 'foo'. Of
course, 'foo' is anything you want. In this case, would I have to mount
to /foo/* , as oppposed to just plain /foo* ?
Or make it easier than that, and as you suggest, prepend a token to the
servletname like:
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>/serLogin/*</url-pattern>
</servlet-mapping>
and map jkmount to /ser* ?
> -----Original Message-----
> From: Jason Bainbridge [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, June 17, 2003 12:29 PM
> To: Tomcat Users List
> Subject: Re: possibly off topic: workers2.properties question
>
>
> On Wed, 18 Jun 2003 00:04, Mike Curwen wrote:
> > Maybe I'm missing something, but I'm not using Tomcat's servlet
> > invoker. So I don't have a single 'some-string-here' (ie /servlet)
> > that I can use. Or do I?
>
> I guess a lot of people are in a similar situation to the one
> I am in where
> the web application is completely composed of servlets so to
> simplify the URL
> the servlets within the web.xml file are mapped to exclude
> the servlet
> keyword eg:
>
> /webapp/servletName
>
> This as you have suggested isn't too friendly for jkMount
> statements as there
> is no way to determine if it is a servlet or not, I guess the
> only way around
> that is to change the mapping to include the servlet keyword.
>
> Regards,
> --
> Jason Bainbridge
> http://jblinux.org
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]