I've been having problems making IIS7 work with a Drupal autocomplete widget and it's preventing me from using clean URLs.
The problem lies in URLs ending in spaces; I initially thought it was URLs with spaces in them, however, after more experimenting, it's only URLs ENDING in spaces that cause IIS7 to 404.
Examples:
http://www.imeasure.ca/nodereference/autocomplete/field_measurement_sheet/Hairysquid%20llama
http://www.imeasure.ca/nodereference/autocomplete/field_measurement_sheet/Hairysquid%20
No matter what you type around the %20 at the end of the path, it will return [ ]. Only when the path ends in %20 does the 404 come up. Frankly, any path at that domain ending in %20 causes an error.
I'm thinking this is due to some stupid, stupid Windows system-level function that removes trailing spaces from filenames. Like, try typing a filename ending in a space in Windows -- it's always truncated. To this end:
How would I suppress IIS 7.5 error 404 messages resulting from paths ending in %20?
Many thanks.