We're having the same setup and receiving the same problem as: http://stackoverflow.com/questions/713025/iis-6-with-wildcard-mapping-and-unc-virtual-directory-problem
Setup
- Server 2003 32bit, IIS 6
- ASP.NET wild card mapping
- A virtual directory mapped to an UNC share serving static images for a CMS in a load balancing environment
My question if it's possible to turn off asp.net from virtual and only serve static files e.g. images in the virtual directory, to avoid the problem with too many open connections?
If it's not possible I'll guess I have to implement a solution like http://stackoverflow.com/questions/1862847/version-control-of-uploaded-images-to-file-system to server the files from a local disc.
I found a possible solution at http://blog.stevensanderson.com/2008/07/07/overriding-iis6-wildcard-maps-on-individual-directories/ that removes the wild card mapping and makes it possible to turn of execution of asp.net files.