DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=21242>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=21242 Trailing character renders pages with code ------- Additional Comments From [EMAIL PROTECTED] 2004-09-02 08:27 ------- Cliff solution's does not seem to work, unless I messed up something: instead, the source of the code is always served, whether there is a %20 or not, and Tomcat never gets anything to do. Below is what I'm using as configuration, in case anybody is interested. As for me, since I don't have the possibility to use a Unix system (I wish :-( ), I think I'll get back to the officially documented bad way that works, rather than the unofficial one that does not. It's really harder than it looks to handle interaction of two Apache projects that interprets filenames in opposed ways. If my management knew, they'd ask for switch to IIS, and it wouldn't be me anymore tinkering with that server :-) Thanks for your help, I really appreciate it. It's just that this thing has been in production for more than a year, and I thought I had perfectly RTFMed, and it appears now that the FM was wrong, and I have to start changing all the configuration... <VirtualHost host_ip_address> ServerName host.name.com ServerAlias host DocumentRoot "c:/ROOT" <Directory "c:/ROOT"> Options none AllowOverride None Order allow,deny Allow from all </Directory> Alias "/directory" "C:/directory" <Directory "C:/directory"> Options None AllowOverride None Order allow,deny Deny from all <Files *.jsp> JkUriSet worker ajp13:localhost:8009 Allow from all </Files> </Directory> </VirtualHost> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
