> Thanks for the explanation, Dave. It appears on linux at least the JRun > pre-filter is detecting *.cfm* as being a CF file, and then somewhere else > (perhaps in the post filter?) determining that it's not and throwing an > error..
I suspect that the "somewhere else" in this case is the CF server itself. You can probably fix this by editing web.xml to have more specific patterns - maybe you want to execute: *.cfm$ *.cfm?* *.cfm/$ In the above examples, I'm using a dollar sign to denote the end of the string - I don't know if that syntax is supported in web.xml offhand, though. I was a bit curious about what kind of patterns you can use in web.xml, and found these two links which would help me figure out the answer if I cared enough to look: http://schemas.stylusstudio.com/j2ee14/n562c1ad0/complexType_url-patternType.html http://www.coderanch.com/t/414165/Servlets/java/url-pattern-web-xml (describes differences between Servlet API versions, not really that relevant as far as the patterns themselves go) Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-linux/message.cfm/messageid:4571 Subscription: http://www.houseoffusion.com/groups/cf-linux/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-linux/unsubscribe.cfm
