On Mon, 24 May 2004 13:34:01 -0700, Eric Hodel wrote
> To mount the servlet:
> 
> server = WEBrick::HTTPServer.new
> server.mount "/some/path", MyServlet, any_extra_args

Thanks, Eric.  I have two questions about the servlet architecture:

1) Can the code that executes the server.mount() dynamically alter the mount 
points?  i.e. when a configuration file changes either add to or remove 
mount points?

2) What if a person has a list of a couple hundred URLs that they want 
mounted to the servlet?  Will that be ugly with Webrick, or no problem?


Thanks much,

Kirk Haines