iis6

IIS reset details

What exactly happens when we do IISreset? What resources get released? We have an ASP.Net website (.net 1.1) which use Crystal reports 11. Lately, running reports are throwing several crystal report specific exceptions and then the users can't run reports anymore. Resetting IIS lets the users log back in and run the reports until it fail...

ASP.NET app never starts

Hi. After migrating my app to .NET 4 it's not starting. When i'm trying to load it in browser it endlessly loading it and nothing else happening. There is no errors or timeouts, just loading. Please help. What should i do? What reasons there might be? I'm using IIS6 btw. ...

Weird stack trace in exception "The incoming request does not match any route"

i have published asp.net mvc application on iis 6 on the server(windows server 2003) from local machine. On server i have set the default page to default.aspx. but when i try to browse the site on server, it gives me exception "The incoming request does not match any route" One thing i noticed is that. Stack trace on line 5 is shown belo...

Keeping asp.net mvc site IIS6 always ready to accept requests

I have asp.net mvc intranet site that is deployed to IIS6. Site is used rarely so app pool tends to shutdown. When user click the page for the very first time 5-10 seconds are passed till page appears (app pool started and site is compiled). Situation repeats for the next page and so on. AFAIK IIS7 has option to disable App pool shutdown...

asp.net mvc, IIS 6 vs IIS7.5, and integrated windows authentication causing javascript errors?

This is a very strange one. I have an asp.net MVC 1 app. Under IIS6, with no anon access - only integrated windows auth - every thing works fine. I have the following on most of my Foo pages: <% using (Html.BeginForm()) { %> Show All: <%= Html.CheckBox("showAll", new { onClick = "$(this).parent('form:first').submit();" })%...

Rails on IronRuby (IIS 6)

I'm trying to get Rails running on a IIS 6 webserver using IronRuby, but without success. I have followed this webcast and got it running on IIS 7, but can't make it work on a IIS 6 server. I need some help to get this to work. Any ideas? ...

IIS 6 session timing out a lot quicker than expected

I am working with an web application that has its sessions timing out a lot quicker than expected. We expected a timeout of 15 minutes but it's timing out at 3-4 minutes. Info about environment: IIS6 classic ASP / COM+ app timeout OK on current PROD, much quicker in dev / QA environments We already disabled app pool recycling, and even...

Restarting IIS6 - Python

Hi folks, I'm serving a Django app behind IIS 6. I'm wondering if I can restart IIS 6 within Python/Django and what one of the best ways to do would be. Help would be great! ...

Windows Authentication results in 404 live

I have an asp.net mcv site I'm trying to build, and integrate windows authentication for domain user groups. I have Authentication mode = windows on, and have messed with several other settings and switches both in the website and the iis manager, but all result in the same thing. Everything works in testing on the localhost, pages dis...

How to programmatically end an ASP.NET session after a given amount of time.

Hi, we're in need to stop the user session in an ASP.NET site after some time(say 20 mins). We know we can use a timer and code every page to expire on the timer tick, but we're searching a faster way, maybe through an IIS configuration? Is there a built in way to do such things? We're using ASP.NET 2.0, Framework 3.5, IIS 6, c#. TY....

How can I configure IIS to serve a site when it is asked by ip?

I have a site www.example.com and example.com configured at x.x.x.190 At the moment, foo.example.com is also configured at the same ip. In the DNS server www is a CNAME alias for example.com How can I make it so that when a request like http://x.x.x.190 is made, the server serves the content of www.example.com, just like if the request ...

ASP classic to create a folder, and then change the permissions on it

Hello All, I am relatively new to this whole ASP classic programming thing, and I am not working on a pretty complex script. Essentially the script creates a domain user account, and then creates their home folder on a networked machine. I.E: \SERVER\DIR\HOMEDIR. I have the code working marvelously, except when it comes to making their...

VB.Net code Works on IIS6 DevServer but not on IIS7 Server 2008. Failed to load viewstate.

I have an ascx usercontrol acting like as a standard createUser formular. Code is written in VB.Net 3.5 The control also has some radiobuttons with the property autopostback=true set. The Radiobuttons controls if the member should be a Company or an Individual. If a radiobutton is clicked, the formular will display or hide certain text...

Hosting WCF app in IIS 6 - localhost replaced with machine name

Hello again, I've recently moved my Silverlight solution off of Casini (one for service, one for SL app) and over to IIS to simulate production. It's one website on a port (localhost:2002) containing two web applications, one for my SL app and one for my WCF service. Everything works fine in Casini with a clientaccesspolicy xml file, bu...

What does this IIS error log mean?

I'm using Debug Diagnostic Tool, trying to understand why around 5% of the requests that are sent to my webservice just crash, without necessarily throw any error inside my application. One of the errors this tool took is below. Can anyone here understand exactly what could be happening? Thanks! [6/17/2010 5:32:58 PM] First chance exc...

A shared located on another computer is disabled in IIS

HI Guys, I was trying to point my virtual directory to a shared computer directory. When browsing the path to mapped drive, OK button is disabled. Is there any settings im missing on that server, what all things I do need to check. Thnx ...

MVC2 + ASP.NET 4.0 + IIS6 + extensionless URLS, no longer need wildcard mapping?

I noticed that asp.net 4.0 now installs a top-level isapi plugin (in iis6), such that it can inspect every request coming to the server. Should this now allow us to run MVC applications with extensionless URLS and have the aspnet isapi process them correctly without requiring the wildcard mapping (and avoid the performance penalties asso...

Hosting WCF service on IIS...

I am trying to host a WCF service using IIS, (works fine in Cassini). However when I host it in IIS I get the following error: "A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.)" I ...

Compression makes slow response time

I have reacently activated gzip compression on an IIS6 webserver. I use both static and dynamic compression (static level 10 and dyamic level 1). This was a measure to increase server response time performance. However it seems like the page loads slower after the compression was activated. All my measurements in firebug indicate this. ...

ASP.NET MVC eurl.axd errors

Using the following steps: (I have checked this similar post, which does not solve my problem.) Under Windows Server 2003/IIS6, I create a new site called "testapp" In VS2010, I create a new ASP.NET MVC 2 application. I add a view called "Info" with the following code: <h2>System</h2> <h3>Request</h3> <% foreach (string key...