tom: I don't know if this helps or not, but I had a similar problem getting a turbine app to run under Resin. In order to get my images to load, I had to add a specific servlet-mapping to my web.xml.
The following works... <servlet-mapping> <servlet-name>app</servlet-name> <url-pattern>servlet/*</url-pattern> </servlet-mapping> (and can be accessed at URL: http://localhost:8080/app/servlet) With a url-pattern of just "/*" instead of "servlet/*" it works, but the images/css/scripts... won't load. (and with just "*" it never leaves the first page) (with props to Scott Eade who figured this out and answered a how-to on the resin listserv) I dunno if this helps at all, but maybe... Steve -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
