Well, in my case, I'm trying to convert an app from CF9 to OBD and having an issue with SES links.
See: https://groups.google.com/forum/#!topic/openbd/aNDdCwNBfhs So Peter J. Farrell recommended that I add this filter code to my web.xml <filter> <filter-name>SearchEngineFriendlyURLFilter</filter-name> <display-name>SearchEngineFriendlyURLFilter</display-name> <description>SearchEngineFriendlyURLFilter</description> <filter-class>com.newatlanta.filters.SearchEngineFriendlyURLFilter</filter-class> <init-param> <param-name>extensions</param-name> <param-value>cfm,cfml</param-value> </init-param> </filter> <filter-mapping> <filter-name>SearchEngineFriendlyURLFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> I did, but when I restart OBD Desktop server, it overwrites the filter stuff with a brand new web.xml. So, no way to test my changes. I can image there are other reasons why you might not want that to be overwritten. Is there a way to prevent it from being overwritten? Thanks. -- online documentation: http://openbd.org/manual/ google+ hints/tips: https://plus.google.com/115990347459711259462 http://groups.google.com/group/openbd?hl=en
