active questions tagged iis6 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:40:30Z http://stackoverflow.com/feeds/tag/iis6 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1924357/iis6-disallow-a-particular-file-extension-from-being-downloaded 1 IIS6: Disallow a particular file extension from being downloaded Jakub 2009-12-17T20:30:23Z 2009-12-18T17:24:29Z <blockquote> <p><em>[I posted a similar question on serverfault.com, but had very little feedback so trying here]</em></p> </blockquote> <p>I can do this just fine under Apache with htaccess. But at work its all M$ all the time...</p> <p>I need to lock off access to any .fla files that might come up on a virtual host. We keep them next to the few .swf we use on some of our sites, I just want to be sure they are not being downloaded by people or spiders that may scrape the site.</p> <p>There isn't really anything sensitive in the fla's but I'd rather keep them in the same folder and have them forbidden to downloaders.</p> <p>I've tried the MIME type route (check if MIME type is defined under HTTP Headers > MIME Types, remove if it was, etc;), but there is no FLA defined, but I can still download the file by default. I recall this was the opposite if you WANTED to serve <code>.flv</code> files, but not <code>.fla</code>'s</p> <p>I cannot do a Web.Config approach (at least I don't think I can) as it is not an ASP.NET site... so I am not sure.</p> <p>I don't want to install any apps (as this is a production system).</p> <p>Thanks appreciate any feedback.</p> <p><hr></p> <p><strong>MY SOLUTION:</strong></p> <p>Thanks to being pointed in the right direction, I got this working the way I wanted (hopefully correctly), for anyone needing this solution as well, here is what I did:</p> <p>Select your website under IIS > Properties > Home Directory (tab) > Configuration (button) > Mappings (tab) > Click Add (button)</p> <p><strong>Executable:</strong> C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll</p> <p><strong>Extension:</strong> <em>your extension here</em></p> <p><strong>Verbs:</strong> (ALL or POST/GET/etc;)</p> <p>[x] Script Engine (checked)</p> <p>[x] Vefiry file exists (checked)</p> http://stackoverflow.com/questions/1908168/how-do-i-modify-the-custom-errors-of-a-remote-iis6-website-using-msbuild 1 How do I modify the custom errors of a remote IIS6 website using MSBuild PabloC 2009-12-15T15:23:09Z 2009-12-17T12:21:23Z <p>I'm trying to use "Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting" to change the http error messages of a remote IIS website. The documentation for this task in particular is somewhat lacking and I haven't found a way to use it succesfully. I'd like the http 404 error to load a url instead of the default 404b.html file. I've tried using the task as such:</p> <pre><code>&lt;Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting ErrorCode="404" MachineName="$(MachineName)" WebSiteName="$(SiteName)" Path="." Uri="/errors/mycustom404.htm" Type="URL" DirectoryType="WebDir" /&gt; </code></pre> <p>I get an exception when the task runs but I'm not clear on what I'm missing:</p> <pre><code>Using "Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting" task from assembly "c:\Microsoft.Sdc.Tasks.dll". Task "Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting" error : A task error has occured. error : Message = Object reference not set to an instance of an object. error : ErrorCode = 404 error : SubErrorCode = &lt;String.Empty&gt; error : Uri = /errors/mycustom404.htm error : Type = URL error : DirectoryType = WebDir error : MachineName = testMachineName error : WebSiteName = testSiteName error : Path = . error : DirectoryName = &lt;String.Empty&gt; error : error : at Microsoft.Sdc.Tasks.Web.WebSite.UpdateHttpErrorSetting.InternalExecute() </code></pre> <p>Further insight is very welcome.</p> http://stackoverflow.com/questions/1913218/w3wp-has-handle-on-download-files 0 w3wp has handle on download files Uwe 2009-12-16T08:43:52Z 2009-12-16T08:53:02Z <p>I set up iis to handle .exe with "asp.net 2.0"s isapi filter to enable dynamic url replacement. For this I setup the extension in iis and added the following line to web.config. Works fine so far.</p> <p><code>&lt;add path="*.exe" verb="*" type="System.Web.StaticFileHandler" /&gt;</code></p> <p>the problem is that form that point w3wp process has several handles on these files. Most likely because someone is downloading them at the moment.</p> <p>Is there a way to tell iis/asp.net not to put a exclusive handle on the file? I want to replace them even if the site is running. This works as long as asp.net does not handle these files.</p> http://stackoverflow.com/questions/1911030/asp-net-iis6-attempted-to-read-or-write-protected-memory-this-is-often-an-ind 0 ASP.NET / IIS6: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Daniel Schaffer 2009-12-15T22:52:32Z 2009-12-15T23:02:49Z <p>I'm getting the following error on my production servers:</p> <p><code>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</code></p> <p>It doesn't happen all the time, but seems to happen most frequently during times of high traffic.</p> <p>The error is occurring in a custom <code>IHttpHandler</code>.</p> <p>The stack trace doesn't give much of an indication of what's actually going on when the exception happens - all that is happening in the area it indicates is writing to the response using Response.Write.</p> <p>I've noticed that when this starts happening, if I remove the traffic from the server, recycle the app pool, and put it back on, it seems to help. Though, when the traffic is first returned, there is a cluster of these errors before it begins working properly.</p> <p>I've also taken a look through the dozens of other SO questions/ google search results with this error, but none of the remedies seem to be relevant to this situation.</p> <p><strong>Edit:</strong> I don't do anything directly with unmanaged/unsafe code. I do use MEF though, and I'm not sure if it does.</p> http://stackoverflow.com/questions/1064918/wcf-securityexception 1 WCF SecurityException Jeff 2009-06-30T17:22:25Z 2009-12-15T23:00:02Z <p>I am trying to host a WCF service in IIS 6.0 on server 2003. And when I browse to the server I get the following error.</p> <p>SecurityException: Request for the permission of type 'System.Net.DnsPermission</p> <p>Is this related to the permissions granted to the user account the app pool is running under or some other problem, and how do I fix this. </p> http://stackoverflow.com/questions/1910658/how-can-i-set-global-mime-types-for-iis6-programmatically 0 How can I set global mime-types for IIS6 programmatically? Kevin 2009-12-15T21:52:04Z 2009-12-15T21:52:04Z <p>Currently I am able to to set a mime type with adsutil.vbs for the primary web site on IIS6 with the following syntax:</p> <pre><code>cscript adsutil.vbs set W3SVC/1/Root/MimeMap ".manifest, text/cache-manifest" </code></pre> <p>This seems to work fine when I only need to target W3SVC/1.</p> <p>I need to write an update script that will make sure that any sites on a given IIS6 installation have the proper mime type configured. I could either add the mime type to each individial site or at the global level. I need to do this programmatically and would like to use adsutil.vbs if at all possible.</p> http://stackoverflow.com/questions/1907670/asp-net-localhost-routing-issue 0 ASP.NET localhost routing issue David 2009-12-15T14:01:33Z 2009-12-15T14:31:31Z <p>A call to localhost ( using the VS 2008 integrated webserver ) is not working ( empty page.. )</p> <pre><code>http://localhost:6666 </code></pre> <p>but a call to a remote IIS</p> <pre><code>http://asdf.com/MyApp </code></pre> <p>is routed to the correct controler and method (SearchController -> Search )... MyApp is the IIS directory in which the folder "Controller" is...</p> <p>The routingcode:</p> <pre><code> routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Search", action = "Search", id = "" } // Parameter defaults ); </code></pre> <p>How to solve this, so that it's working on both webservers?</p> http://stackoverflow.com/questions/218491/windows-server-2003-server-to-server-proxy-avoidance-configuration 1 Windows Server 2003 Server to Server proxy avoidance configuration david-raywood 2008-10-20T13:47:28Z 2009-12-14T16:04:51Z <p>Is it possible to configure Windows Servers that reside on the same domain such that when a web service call is made from a web app using an IP address, the request does not go via a proxy server?</p> <p>The web service is running on one of the servers on the domain. </p> <p>I want to configure IP based security on the server that hosts the web service such that it only allows connections from specific servers. Currently all requests go via the proxy server rendering IPSec problematic.</p> <p>Within the browser I can specify that requests following a specific pattern should bypass the proxy server. It's essentially this behaviour I want to replicate with the servers.</p> <p>Thanks</p> http://stackoverflow.com/questions/888747/object-reference-not-set-in-getroutedata-system-web-routing 1 Object Reference not set in GetRouteData (System.Web.Routing) kim3er 2009-05-20T15:47:28Z 2009-12-14T06:45:52Z <p>This is driving me mad. I've implemented the Web.Routing on a Web Forms application. The application works fine and then inexplicably (at least at the moment) the following error message is thrown:</p> <blockquote> <p>Object reference not set to an instance of an object. at System.Web.Routing.RouteCollection.GetRouteData(HttpContextBase httpContext) at System.Web.Routing.UrlRoutingModule.PostResolveRequestCache(HttpContextBase context) at System.Web.Routing.UrlRoutingModule.OnApplicationPostResolveRequestCache(Object sender, EventArgs e) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</p> </blockquote> <p>This error is intermittent and no amount of navigating around the site recreates the error.</p> <p>My interpretation of the error is that a request to the server is resulting in a PostResolveRequestCache event with a null httpContext, but I'm not sure how that is possible.</p> <p>The problem is resolved by restarting the Application Pool.</p> <p>The application is running on IIS6, because of this, I've added a Wildcard application map to aspnet_isapi.dll with "Verify that file exists" unchecked. This is to enable friendly urls without file extensions, I am however considering changing this as a possible work around. The thinking behind this is, that there is possibly a request being sent to the server which is being picked up the module that shouldn't be.</p> <p>My implementation has been customised but follows the general guidelines set down by Mr. Haack. Due to the nature of the error, I'm unsure whether any of my code would provide much insight, but I'm obviously willing to do so on request.</p> <p>Any help would be much appreciated.</p> http://stackoverflow.com/questions/1899188/exceptions-in-system-web-routing-routecollection-getroutedata 0 Exceptions in System.Web.Routing.RouteCollection.GetRouteData Amir 2009-12-14T06:12:30Z 2009-12-14T06:35:18Z <p>I've been getting two exceptions at random times in my asp.net mvc code running on iis7: </p> <pre><code>Exception type: InvalidOperationException Exception message: Collection was modified; enumeration operation may not execute. at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) at System.Collections.Generic.List'1.Enumerator.MoveNextRare() at System.Collections.Generic.List'1.Enumerator.MoveNext() at System.Web.Routing.RouteCollection.GetRouteData(HttpContextBase httpContext) at System.Web.Routing.UrlRoutingModule.PostResolveRequestCache(HttpContextBase context) at System.Web.Routing.UrlRoutingModule.OnApplicationPostResolveRequestCache(Object sender, EventArgs e) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) </code></pre> <p>and</p> <pre><code>Exception type: NullReferenceException Exception message: Object reference not set to an instance of an object. at System.Web.Routing.RouteCollection.GetRouteData(HttpContextBase httpContext) at System.Web.Routing.UrlRoutingModule.PostResolveRequestCache(HttpContextBase context) at System.Web.Routing.UrlRoutingModule.OnApplicationPostResolveRequestCache(Object sender, EventArgs e) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) </code></pre> <p>It's not consistently reproducible, but I assume it's something changing (or corrupting) <code>RouteTable.Routes</code>. The only place I access <code>RouteTable.Routes</code> in my project is in <code>Global.asax.cs</code> and I know that the code there is only being called once, so it's not the problem. Any idea on how to track it down?</p> http://stackoverflow.com/questions/1845449/how-do-i-debug-a-500-internal-server-error-on-iis-6-0-managed-by-plesk-running-a 0 How do I debug a 500 Internal Server Error on IIS 6.0 managed by Plesk (running ASP classic)? Jimbo 2009-12-04T07:42:06Z 2009-12-14T03:13:35Z <p>I have read pretty much EVERY blog post, article and help document published regarding this problem and they have not helped. The most common suggestions are:</p> <ol> <li><p>Internet Explorer -> Tools Menu -> Internet Options -> Advanced -> Show Friendly Error Messages (make sure this is NOT ticked)</p></li> <li><p>IIS -> Home Directory tab -> Configuration... -> Debugging tab -> Send Detailed ASP Error message to the client (make sure this is selected)</p></li> </ol> <p>Neither of these work and I have a feeling it has to do with Plesks management of IIS. Is there ANY way to see what these Internal Server Errors are? Even if it means browsing around the server for log files?</p> http://stackoverflow.com/questions/1897348/compiler-error-message-bc30560-xxxxxxxxaspx-is-ambiguous-in-the-namespace-a 0 Compiler Error Message: BC30560: 'xxxxxxxx_aspx' is ambiguous in the namespace 'ASP'. Shiraz Bhaiji 2009-12-13T18:55:42Z 2009-12-14T01:48:07Z <p>I get this error after installing a web site on a test server using an msi.</p> <p>This is similar to <a href="http://stackoverflow.com/questions/899130/bc30560-defaultaspx-is-ambiguous-in-the-namespace-asp">this</a> SO question. However, that question was related to the development environment, so it does not solve my problem.</p> <p>Anyboby knows what causes this error?</p> http://stackoverflow.com/questions/1262921/how-to-find-relative-path-to-c-inetpub-adminscripts-adsutil-vbs 0 How to find relative path to C:\Inetpub\AdminScripts\ADSUTIL.VBS? Mike Atlas 2009-08-11T21:06:43Z 2009-12-11T22:32:18Z <p>IIS 6 and older ships with a utility script called <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d3df4bc9-0954-459a-b5e6-7a8bc462960c.mspx?mfr=true" rel="nofollow">ADSUTIL.VBS</a>: </p> <blockquote> <p>Adsutil.vbs is an IIS administration utility that uses Microsoft Visual Basic Scripting Edition (VBScript) with Active Directory Service Interfaces (ADSI) to manipulate the IIS configuration. This script should be run using CScript, which is installed with Windows Script Host.</p> </blockquote> <p>In other words, this tool lets you change <a href="http://technet.microsoft.com/en-us/library/cc779862%28WS.10%29.aspx" rel="nofollow">IIS metabase</a> settings programmatically, from the command line. </p> <p>I would like to call this tool from an InstallShield project in order to make some configuration changes to IIS. I am curious if it either legal to re-distribute the script (there is no legal wording inside the source for it) or to simply launch the command via:</p> <pre><code>CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs </code></pre> <p>and hope that the script exists on disk in that location. </p> <p><strong>So my question is</strong> - will it always exist in that path above, even if some other websites (inetpub roots) on the machine are located on a non-system drive? It seems all MSDN and other Microsoft KB articles that refer to the ADSUTIL tool do so by using the %SYSTEMDRIVE% path above.</p> <p>I see that at least <a href="http://community.acresso.com/archive/index.php?t-93165.html" rel="nofollow">one other attempt to deal with this</a> by distributing both cscript.exe and adsutil.vbs with their InstallShield projects.</p> <p>Perhaps there is a registry key or other method to obtain the location of the Inetpub\AdminScripts path?</p> <p>Maybe I should just write a <a href="http://www.codersource.net/csharp%5Fiis%5Fmetabase.html" rel="nofollow">C# application that changes the value</a> or <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/4b976f46-3751-4f6b-ab68-5e19fa73a7b1.mspx?pf=true" rel="nofollow">my own VBScript</a> and distribute with my own little app instead?</p> http://stackoverflow.com/questions/1885481/secure-access-between-iis-and-sql-server 0 Secure access between IIS and SQL Server. pencilslate 2009-12-11T02:33:51Z 2009-12-11T11:01:25Z <p>The environment setup has an ASP.NET webservice on IIS 6 connecting to a SQL Server over the network. </p> <p>I am trying to understand, whether it's possible to secure the calls between IIS and SQL Server 2008. Is it possible? Is it something on the lines of SSL?</p> <p>thanks for reading!</p> http://stackoverflow.com/questions/1883619/get-iis6-to-load-json-files-without-server-wide-change 1 get IIS6+ to load JSON files without server-wide change? Jared Henderson 2009-12-10T20:05:09Z 2009-12-11T02:20:11Z <p>I've got a PHP-based web app that runs on all kinds of my customer's servers, mostly apache, but sometimes IIS. I'm using a bunch of <strong>JSON</strong> files for storing image URL data to be loaded by flash elements.</p> <p><strong>Problem: IIS6+ won't load a .json file, it returns a 404 error</strong> because it's not a <em>known</em> mime type (why IIS doesn't recognize .json is beyond me).</p> <p>I've googled this a bunch, and read this SO post: </p> <p><a href="http://stackoverflow.com/questions/332988/get-iis6-to-serve-json-files-inc-post-get">http://stackoverflow.com/questions/332988/get-iis6-to-serve-json-files-inc-post-get</a></p> <p>But I'm trying to figure out a way to convince IIS to accept the JSON files <strong>without the user having to contact their webhost and ask them to make a server-wide change. Is this possible?</strong> Is there something sort of like a <code>php_ini</code> setting or some sort of script-based solution to tell IIS that .json's are OK?</p> <p>If the answer to above is NO, I've read a few places suggesting setting the json file extension to <code>.txt</code>, which I've confirmed works on the IIS7 server I'm troubleshooting on, with no apparent deleterious effects to the flash elements. If I had to, could I write all of the json files as .txt instead? Would there be any down-sides to doing it that way?</p> http://stackoverflow.com/questions/1773275/how-do-you-globally-modify-page-output-sent-from-iis-without-modifying-the-page-s 3 How do you globally modify page output sent from IIS without modifying the page source? corymathews 2009-11-20T21:13:14Z 2009-12-10T16:50:28Z <p>A couple sites of mine recently got "hacked". Someone was able to add a line of JavaScript to the bottom of every page on the site. </p> <p>The server is a Windows Server 2003, and has Cold Fusion 8 and MySQL 5.x installed and running.</p> <p>Looking into the code on each page shows that none of the pages were modified. The JavaScript is not in the code files themselves. This leads me to believe it is an IIS problem, but I am unsure and cannot find anything that would be able to do this within IIS. </p> <p>The JavaScript being added redirects a user to another page only when they come from Google, or at least it appears to work this way.</p> <p>Any help on how someone was able to accomplish this as well as removing it would be greatly appreciated. </p> <p>Another way to word the question thanks to @Jeffrey Hantin</p> <p><strong>How do you systematically modify output from IIS without modifying individual pages?</strong></p> <p><hr></p> <p><strong>EDIT</strong>: A bit more testing has shown that only the .cfm pages add the extra javascript. Added a new .cfm and the js was there but a .html did not have it. </p> <p><hr></p> <p>Edit2: Turns out to have been a coldfusion problem after all. Somehow the pages OnRequestEnd.cfm were created on the sites and added that js.</p> http://stackoverflow.com/questions/1544036/why-are-my-aspx-pages-not-being-compressed-with-gzip-enabled 1 Why are my ASPX pages not being compressed with Gzip enabled? JackM 2009-10-09T14:12:37Z 2009-12-10T16:22:48Z <p>So I set up gzip compression within IIS 6.</p> <p>I enabled the compression for both static files and application files. I set up a temp directory with the size of 1,024 MB.</p> <p>I modified the Metbase to include: htm,html,js,css,aspx,xml</p> <p>I set the compression level to 9.</p> <p>I added a WSE, called HttoCompression and set it to the gzip.dll aset it to "Allow".</p> <p>I reset IIS.</p> <p>I notice that my css, xml and js files are being compressed, but ASPX pages are not.</p> <p>Did I miss something?</p> http://stackoverflow.com/questions/1880498/bad-request-400-when-calling-a-method-using-ssl-on-a-web-service-hosted-by-iis 0 Bad Request (400) when calling a method using SSL on a web service hosted by IIS. Andy 2009-12-10T11:56:50Z 2009-12-10T11:56:50Z <p>I connect to my web service, which hosted by IIS 6, using certificates and SSL, and for some reason, I get 400 (bad request) error code. When I looked on trace.axd, I can see the POST request, but I cannot see the true reason for the error. I have some questions: 1. If I see the post request, can I be sure that the problem isn't with SSL? (since the post request should be encrypted, and if I see it, it means that it was decrypted) 2. How can I find a detailed reason for the error? 3. I saw that in the POST request, the content length was set to 0, could it be the reason for the error?</p> <p>Thanks</p> http://stackoverflow.com/questions/434608/setting-up-passive-ftp-iis6-on-windows-server-2003 1 Setting up passive FTP (IIS6) on Windows Server 2003 ycseattle 2009-01-12T06:27:36Z 2009-12-09T23:00:01Z <p>I am having trouble setting up passive FTP on IIS 6. I used this instruction: <a href="http://www.velikan.net/iis-passive-ftp/" rel="nofollow">http://www.velikan.net/iis-passive-ftp/</a></p> <p>When I tried to upload a file through the FTP, I got the error: </p> <pre><code>425 Can't open data connection. : /index.html </code></pre> <p>The interesting thing is that from the server, I can see the index.html file is already created but the file size is set to 0. </p> <p>I am using the FireFTP client. I opened the FTP passive ports for 1024-1048.</p> <p>Any ideas? Thanks!</p> http://stackoverflow.com/questions/1868819/file-upload-in-flex-when-iis-is-set-to-integrated-windows-authentication 0 file upload in flex when IIS is set to 'integrated windows authentication' unknown (google) 2009-12-08T18:11:58Z 2009-12-09T21:53:22Z <p>Hello,</p> <p>I have a flex app that allows the user to upload a file. The flex side uses the FileReference.upload method that goes to an .aspx page that handles the upload. It works only intermittently when I have IIS set to integrated windows authentication. That said, for testing purposes,I wrote a separate aspx page that does a file upload and this always works....I'd like to leverage the file import,though, within the nice looking flex app and not kick off a new webpage for a file upload.</p> <p>In looking at the IIS logs I have a hypothesis as to what's happening, and want to know if someone has full understanding as to why it may only intermittently work and can confirm or deny this:</p> <ol> <li>Flex' FileReference upload guts does whatever it does on the client then initiates a POST request to my .aspx page. On the times it failes, the IIS logs state that IE didn't pass the credentials so denies the request then sends a 401 response.</li> <li>I don't get this 401 response on the flex side even though I'm listening for HTTP status codes (flash bug?). </li> <li>A new request is somehow immediately made to perform the upload again (it's not my code). I'm inferring this by looking at the IIS lgos which shows a second POST right after the previous one, only this time the user credentials are sent through, but the kicker is that the file the user uploaded is not uploaded this time. I infer this by the fact that the IIS logs show 0 bytes are posted, whereas the previous 401 request show a lot of bytes are POSTed.</li> </ol> <p>On the times it does work, what happens is that the first request for the HTTP POST the FileReference makes so happens to send the windows credentials along, so the client is not challenged.</p> <p>Can any body give any ideas on how to get the FileReference.upload to consistently work when integrated authentication is being used in IIS?</p> <p>Chris</p> http://stackoverflow.com/questions/1869757/asp-net-error-the-local-security-authority-cannot-be-contacted 0 ASP.Net error: The Local Security Authority cannot be contacted Ryan Michela 2009-12-08T20:52:58Z 2009-12-09T21:11:08Z <p>I had a working asp.net site under development on IIS6 and Server 2003, and then something changed. I reset IIS and now I am getting the error message</p> <pre><code>The Local Security Authority cannot be contacted </code></pre> <p>The IIS logs show the return code as <code>500 0 2148074244</code></p> <p>I have no idea what happened, but there is nothing in any of the logs indicating why. Does anybody have any ideas? </p> http://stackoverflow.com/questions/1868108/get-iis-web-site-identifier-programmatically 0 Get IIS Web Site identifier programmatically Brett McCann 2009-12-08T16:27:25Z 2009-12-09T16:12:45Z <p>I'm trying to use adsutil in an installation script of a web app I am installing on IIS 6.0 to set access control. There is a command that works as follows:</p> <pre><code>adsutil.vbs set w3svc/1/root/Authflags 4 </code></pre> <p>This is the command for the default web site, as its Identifier is 1. However, new web apps are given a generated Identifier. In my case, the app I installed was given the Identifier of 2082238887, so my command should look like this</p> <pre><code>adsutil.vbs set w3svc/2082238887/root/Authflags 4 </code></pre> <p>However, I only know this value now from previously installing the app. How would I get this ID during a fresh installation? Every example I have seen for adsutil assumes you are working with the default web site, and therefore an ID of 1. </p> <p>I need my install script to install the app, get its Identifier, and then use it to set permissions via adsutil.</p> http://stackoverflow.com/questions/1874732/multiple-web-sites-or-multiple-web-applications-in-iis6 1 Multiple web sites or multiple web applications in IIS6? jhubsharp 2009-12-09T15:39:39Z 2009-12-09T15:43:18Z <p>Assuming that each app has its own app pool and that I have an unlimited number of domains/IPs handy, are there benefits to hosting applications as separate web sites as opposed to one site containing multiple applications?</p> http://stackoverflow.com/questions/1664749/iis-6-error-message 0 IIS 6 Error Message Yayan 2009-11-03T01:50:29Z 2009-12-09T12:00:02Z <p>Dear All,</p> <p>I have Warning message in my IIS 6 Viewer.How to solve this problem? </p> <pre><code>Event Type: Warning Event Source: ASP.NET 2.0.50727.0 Event Category: Web Event Event ID: 1309 Date: 11/3/2009 Time: 8:18:20 AM User: N/A Computer: PEB-BL05 Description: Event code: 3005 Event message: An unhandled exception has occurred. Event time: 11/3/2009 8:18:20 AM Event time (UTC): 11/3/2009 1:18:20 AM Event ID: 6d12e7ec9a314fd59153efb83329b5c3 Event sequence: 236 Event occurrence: 1 Event detail code: 0 Application information: Application domain: /LM/W3SVC/1950175433/Root/myApp Trust level: Full Application Virtual Path: /attga Application Path: C:\Inetpub\wwwroot\myApp\ Machine name: MyComMachine Process information: Process ID: 4528 Process name: w3wp.exe Account name: NT AUTHORITY\NETWORK SERVICE Exception information: Exception type: RowNotInTableException Exception message: This row has been removed from a table and does not have any data. BeginEdit() will allow creation of new data in this row. </code></pre> http://stackoverflow.com/questions/1840939/asp-net-mvc-httpexception-strange-file-not-found 0 ASP.net MVC HttpException strange file not found Paddy 2009-12-03T16:07:23Z 2009-12-09T10:49:49Z <p>I'm running asp.net MVC site on IIS6 - I've edited my routing to look like the following:</p> <pre><code> routes.MapRoute( "Default", "{controller}.aspx/{action}/{id}", new { controller = "Home", action = "Index", id = "" } ); routes.MapRoute( "Root", "", new { controller = "Home", action = "Index", id = "" } ); </code></pre> <p>So all my urls now contain .aspx (as per one of the solutions from Phil Haack). Now, I catch all unhandled exceptions using Elmah, and for almost every page request, I get the following error caught by Elmah, that I never see on the front end (everything works perfectly):</p> <pre><code>System.Web.HttpException: The file '/VirtualDirectoryName/Home.aspx' does not exist. System.Web.HttpException: The file '/VirtualDirectoryName/Home.aspx' does not exist. at System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert) at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert) at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.UI.PageHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) </code></pre> <p>There is a Home controller, and it should be found, but I'm not sure a) where this is being called from, and b) why I don't see this error on the front end. Any ideas?</p> <p>Edited with answer:</p> <p>I think the answer for this can be found in this question:</p> <p><a href="http://stackoverflow.com/questions/34194/asp-net-mvc-on-iis6">http://stackoverflow.com/questions/34194/asp-net-mvc-on-iis6</a></p> http://stackoverflow.com/questions/1872227/iis-6-how-to-redirect-from-http-example-com-to-http-www-example-com 3 IIS 6 how to redirect from http://example.com/* to http://www.example.com/* Q8-coder 2009-12-09T07:37:48Z 2009-12-09T09:56:08Z <p>I am using asp.net 3.5 and IIS 6.</p> <p>How can we automatically redirect pages from <code>http(s)://example.com/*</code> to <code>http(s)://www.example.com/*</code> ?</p> <p>thanks.</p> http://stackoverflow.com/questions/1870558/running-asp-net-mvc-on-iis6-do-i-need-to-install-anything-on-the-server 0 running asp.net mvc on iis6, do I need to install anything on the server? mrblah 2009-12-08T23:17:01Z 2009-12-09T02:20:12Z <p>running asp.net mvc on iis6, do I need to install anything on the server? or can I just drop the .dll's in the /bin (system.web.mvc/routing/etc)</p> http://stackoverflow.com/questions/323325/iis-6-0-wildcard-mapping-benchmarks 21 IIS 6.0 wildcard mapping benchmarks? Chris 2008-11-27T09:38:36Z 2009-12-08T21:39:10Z <p>I'm quickly falling in love with ASP.NET MVC beta, and one of the things I've decided I won't sacrifice in deploying to my IIS 6 hosting environment is the extensionless URL. Therefore, I'm weighing the consideration of adding a wildcard mapping, but everything I read suggests a potential performance hit when using this method. However, I can't find any actual benchmarks! </p> <p>The first part of this question is, do you know where I might find such benchmarks, or is it just an untested assumption?</p> <p>The second part of the question is in regards to the 2 load tests I ran using jMeter on our dev server over a 100Mbs connection. </p> <p><strong>Background Info</strong></p> <p>Our hosting provider has a 4Gbs burstable internet pipe with a 1Gbs backbone for our VLAN, so anything I can produce over the office lan should translate well to the hosting environment. </p> <p>The test scenario was to load several images / css files, since the supposed performance hit comes when requesting files that are now being passed through the ASP.NET ISAPI filter that would not normally pass through it. Each test contained 50 threads (simulated users) running the request script for 1000 iterations each. The results for each test are posted below.</p> <p><strong>Test Results</strong></p> <p>Without wildcard mapping:</p> <pre> Samples: 50,000 Average response time: 428ms Number of errors: 0 Requests per second: 110.1 Kilobytes per second: 11,543 </pre> <p>With wildcard mapping:</p> <pre> Samples: 50,000 Average response time: 429ms Number of errors: 0 Requests per second: 109.9 Kilobytes per second: 11,534 </pre> <p>Both tests were run warm (everything was in memory, no initial load bias), and from my perspective, performance was about even. CPU usage was approximately 60% for the duration of both tests, memory was fine, and network utilization held steady around 90-95%.</p> <p>Is this sufficient proof that wildcard mappings that pass through the ASP.NET filter for ALL content don't <em>really</em> affect performance, or am I missing something?</p> <p>Edit: 11 hours and not a single comment? I was hoping for more.. lol</p> http://stackoverflow.com/questions/1750332/the-element-transport-cannot-contain-child-element-extendedprotectionpolicy-b 0 the element 'transport' cannot contain child element 'extendedProtectionPolicy' because the parent element's content model is empty neildeadman 2009-11-17T17:09:49Z 2009-12-08T16:34:33Z <p>I inherited a web application that makes calls to a web service. It is being developed in VS2008 SP1 and deployed to IIS6 (2k3 Server R2).</p> <p>Since I upgraded to Windows 7 Enterprise RTM, the following line gets added to my Web.config:</p> <pre><code>&lt;extendedProtectionPolicy policyEnforcement="Never" /&gt; </code></pre> <p>The problem is that when I deploy this application to my web server I get the following error:</p> <p>The element 'transport' cannot contain child element 'extendedProtectionPolicy' because the parent element's content model is empty</p> <p>I can remove the line and it will work, but its a pain and I forget sometimes to remove it again (VS2008 adds seems to add it back whenever I load the solution!!).</p> <p>Is there anything that can be done?</p> <p>Here is my 'transport' section:</p> <pre><code>&lt;transport clientCredentialType="None" proxyCredentialType="None" realm=""&gt; &lt;extendedProtectionPolicy policyEnforcement="Never" /&gt; &lt;/transport&gt; </code></pre> <p>Thanks Neil</p> http://stackoverflow.com/questions/1867774/intelligencia-urlrewriter-net-not-working-properly-on-iis-6 0 Intelligencia UrlRewriter.NET not working properly on IIS 6? Kevin 2009-12-08T15:39:29Z 2009-12-08T16:27:35Z <p>I'm having an issue getting the following syntax to work:</p> <pre><code>&lt;rewriter&gt; &lt;!-- This does NOTHING --&gt; &lt;if url="whywontthiswork\.aspx" rewrite="/default.aspx" /&gt; &lt;!-- This redirects correctly --&gt; &lt;redirect url="whywontthiswork\.aspx" to="/default.aspx" /&gt; &lt;/rewriter&gt; </code></pre> <p>As noted, the first rule does nothing no matter what I try. The X-Powered-By field on the response for that page request always says "ASP.NET". However, the second rewrite rule always works, and the X-Powered-By field on the response for that request is "ASP.NET,UrlRewriter.NET 2.0".</p> <p>I believe that IIS is configured properly because it is handling the request correctly for <code>&lt;redirect /&gt;</code>. The issue is that I don't have any ideas why the first rewrite rule would not execute.</p> <p>I have tried to search the documentation on <a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.NET</a>, but at this time, it seems their site if offline or no longer in service. Any ideas?</p>