IIS 6 with wildcard mapping and UNC virtual directory problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:33:43Zhttp://stackoverflow.com/feeds/question/713025http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/713025/iis-6-with-wildcard-mapping-and-unc-virtual-directory-problem1IIS 6 with wildcard mapping and UNC virtual directory problemEl Che2009-04-03T08:24:25Z2009-06-11T07:09:43Z
<p>Hi.</p>
<p>On our production servers (win 2003 with IIS6 and load balanced with an F5 BIGIP), we have a problem when introducing wildcardmapping on IIS6. We use .net Framework 3.5 SP1.</p>
<p>The issue manifests itself as by the server only sometimes serving the images stored on a virtual directory pointing to a UNC path.
Sometimes the images are displayed, and sometimes not. Removing the wildcard mapping solved this problem.</p>
<p>I will need wildcard mapping on the server for future features, so any help/pointers to if this is a known problem will be very helpful.</p>
<p>In advance, thanks for any help.</p>
<p>Edit:
The exception it fails with is the following:</p>
<blockquote>
<p>Message: Failed to start monitoring
changes to
'\ourFileServer\folder1\thumbnails'
because the network BIOS command limit
has been reached. For more information
on this error, please refer to
Microsoft knowledge base article
810886. Hosting on a UNC share is not supported for the Windows XP Platform.
Source: System.Web Data:
System.Collections.ListDictionaryInternal
TargetSizeVoid
.ctor(System.Web.DirectoryMonitor,
System.String, Boolean, UInt32)
StackTrace at
System.Web.DirMonCompletion..ctor(DirectoryMonitor
dirMon, String dir, Boolean
watchSubtree, UInt32 notifyFilter)<br />
at
System.Web.DirectoryMonitor.StartMonitoring()
at
System.Web.DirectoryMonitor.StartMonitoringFile(String
file, FileChangeEventHandler callback,
String alias) at
System.Web.FileChangesMonitor.StartMonitoringFile(String
alias, FileChangeEventHandler
callback) at
System.Web.Configuration.WebConfigurationHost.StartMonitoringStreamForChanges(String
streamName, StreamChangeCallback
callback) at
System.Configuration.BaseConfigurationRecord.MonitorStream(String
configKey, String configSource, String
streamname) at
System.Configuration.BaseConfigurationRecord.InitConfigFromFile()</p>
</blockquote>
http://stackoverflow.com/questions/713025/iis-6-with-wildcard-mapping-and-unc-virtual-directory-problem/783595#7835950Answer by jellomonkey for IIS 6 with wildcard mapping and UNC virtual directory problemjellomonkey2009-04-23T21:25:20Z2009-04-23T21:25:20Z<p>Your problem may be that you have the option "Verify that file exists" turned on for your wildcard application map. If this setting is checked, try shutting it off and seeing if that resolves the problem. </p>
http://stackoverflow.com/questions/713025/iis-6-with-wildcard-mapping-and-unc-virtual-directory-problem/882259#8822590Answer by El Che for IIS 6 with wildcard mapping and UNC virtual directory problemEl Che2009-05-19T11:48:52Z2009-05-19T11:48:52Z<p>It's been a while since I asked this question. We have now been able to diagnose the problem. In a nutshell, it seems that once you enable wildcard mapping on UNC shares, ASP.net adds file monitors for each subdirectory. In our case, it's a lot of subdirectories. See <a href="http://weblogs.asp.net/hosterposter/archive/2006/10/30/Hosting-IIS-with-UNC-content-%5F2D00%5F-Network-BIOS-commands-and-other-errors.aspx" rel="nofollow">http://weblogs.asp.net/hosterposter/archive/2006/10/30/Hosting-IIS-with-UNC-content-<em>2D00</em>-Network-BIOS-commands-and-other-errors.aspx</a>.</p>
<p>We will try and fix this by experimenting with different suggestions.</p>