OK :) > 1) Since Tomcat now will be serving all the static content as > well, will it require more threads than when only serving dynamic content?
Same as before. > 2) In Apache I'm using mod_rewrite to rewrite requests to > mydomain.com/ to mydomain.com/myapp. I've implemented this behaviour by using > response.sendRedirect in a scriptlet in the index.jsp of my > ROOT app. Is this the preferred way of doing this? Depends on what you want. If you want mydomain.com/ to be your web application, that's fine, your webapp needs to be the root web application. If you want mydomain.com/mywebapp that's OK too. You don't need a redirect of any kind. This functionality is setup using Context element configuration more of which is in the online Tomcat documentation :) > 3) In Apache I'm using some aliases to serve images stored outside my > appbase from insisde my webapp (Alias /myapp/alias > "/path/outside/appbase"). I've implemented this by creating > context xml > files for all my aliases with appBase="/path/outside/appbase" > path="/myapp/alias". Again, is this the preferred way of doing this? Same answer, it's not "best" practice. > 4) I've compiled jsvc and adapted the Tomcat5.sh to start the > server. If I do "Tomcat5.sh stop ; Tomcat5.sh start" to do a restart of > > the server my machine hangs. If I allow a pause between stop and start then > the > server starts with no problem. Is this a known issue? Same :) <FONT SIZE=1 FACE="VERDANA,ARIAL" COLOR=BLUE> ------------------------------------------------------- QAS Ltd. Developers of QuickAddress Software <a href="http://www.qas.com">www.qas.com</a> Registered in England: No 2582055 Registered in Australia: No 082 851 474 ------------------------------------------------------- </FONT> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
