iis-7.5

Stop IIS 7.5 Application Pool Recycling

How do stop application pools from recycling in IIS 7.5? I have configured the following settings: ProcessModel -> Idle Time-out (minutes) = 0 Recycling -> Regular Time Intervals (minutes) = 0 Are these settings enought to stop an application pool from recycling? ...

ASP.NET MVC Images / CSS not showing for a web application with a web site

I have a number of web applications within my website in IIS 7.5, in which my MVC2 web application will live. WebSite * Prod * Test1 * Test2 I have firewall routing configured to redirect from http://test1.mywebsite.com/xxx to http://my.actual.website/Test1 I've used Url.Content("~/Content/Site.css") but the CSS is not ge...

Parsing with ASP.NET AJAX on IIS 7.5

Hi I have interesting problem here. Have you ever tried to parse (or convert or cast) string to int inside method triggered by child control inside the update panel?. Application is running on IIS 7.5. Everything works correctly under embedded VS application server, but then after deploy on IIS7.5 I am receiving famous asp.ajax error me...

How to efficiently create facebook-like url-rewriting in asp.net

Hello all, I'm currently looking into url-rewriting and how it should be done right and hope you have some inputs here. At the current stage of development only the kind of url-rewriting I'm interested in is adding facebook like behavior to businesses to which we provide services on our site, i.e. www.mysite.com/ShowBusinessInfo.aspx?i...

IIS 7.5 Accept Header MIME type not set correctly for most file types

Currently, all our headers are set to "text/html, application/xhtml+xml, application/sml;q=0.9, /; q=0.8". It would seem from looking at this that our accept headers are not being set correctly in IIS 7. This is the setting for images, .json, everything else. Is this correct, or is this incorrect? In webkit browsers, we are getting an '...

How to give Website permission to create further Websites in IIS 7.5?

I'm creating a website in IIS 7.5 (with Windows 7) that needs to be able to create further websites. I've written code that uses Microsoft.Web.Administration to create the website programmatically, and this works fine when I run it as administrator. Now I'm trying to use the same code in the context of my web application. It fails with ...

Upgrade to .net 4 produces breaks webservice .asmx

I was trying upgrading to .net 4 for my WebForms asp.net project. Now I'm getting this when I try going to the .asmx webservice. Server Error in '/' Application. Type 'Chickenweb.WebServ.WebServ' does not inherit from 'System.Web.UI.Page'. Description: An unhandled exception occurred during the execution of the current web request. Pl...

Application cant be found by IIS!

HI there, I have a problem with my MVC 2 ASP.NET running on IIS 7.5 Server Error in Application "ORDERS"Internet Information Services 7.5 Error Summary HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailable. Detailed Error Information Module I...

SSL port 443 conflict, how to make iis7.5 not think another process is running?

I am running a asp.net mvc2 application on iis7.5 using a SSL certificate for port 443. but as soon as I add port 443 to the Bindings (on "Site Bindings") it wont browse to the site through the HTTPS scheme complainng of another process working. I have tried renaming port 80 to 8080 to no avail. Hope someone can help. All the best P...

VS-2008 cannot find localhost, how can I get it to find it again?

I am using IIS 7.5 on Windows 7, Visual Studio 2008 and a MVC2 Web Application. I previously built the web application on the built in server then swapped over to IIS, all was good. I added SSL and port 443 into the bindings and since then have not been able to get VS to find localhost. When I try to create a virtual directory through...

IIS and Entity Framework connectionstring seem duplicated but cannot see where

When I run my asp.net mvc2 web application using IIS7.5 and connecting up to SQL2008 I get the following messge: "The entry 'XXXEntities' has already been added.\Projects\ProjectName\web.config line 32" Now I think from what I previously read that IIS is reading it twice but can only find this string in the root web.config. Can anyon...

asp.net mvc 2 website MUCH slower on IIS 7.5 vs built-in server

I am taking some time to learn how to develop asp.net mvc2 websites, but I'm used to working directly off IIS instead of the built-in web server that uses the random ports when you hit F5. but I've noticed that using the built-in webserver, requests fly and are immediate. I am using only the default project with the Home and About pages...

How to debug asp page Visual Studio 2010 on IIS 7.5?

I have tried attaching the debugger to the IIS worker process and have a break point on the asp page. But it never hits the breakpoint. I am able to debug the aspx pages in the same site using the above process. ...

Silverlight application running on FF gets CommunicationException during accessing a web using WCF through SSL, but not IE nor Chrome

Hi, I know this exception is pretty popular for SL and WCF developers since I saw tons of posts asking solutions, but I can't find a similar question to my situation, so could anyone help me? I have a SL app which uses the WCF accessing an IIS 7 through SSL. Basically it works well, but when I run it on FireFox3.6.6, it gives me the Co...

Will IIS express run php in Visual Studio?

Will IIS express run PHP in visual studio? If so, will you be able to debug php in Visual Studio? ...

IIS 7.5 Windows Authentication failed with 401.

Since we moved from IIS 7.0 to IIS 7.5 the Windows Authentication doesn't work anymore from remote requests. If I open the website on the webserver everything works fine. web.config: <authentication mode="Windows" /> <identity impersonate="true" /> <authorization> <deny users="?" /> <allow users="*" /> </authorization> ...

cannot use vs2008 debugger for IIS 7.5n with Windows 7

I am following the instructions exactly from the IIS site http://learn.iis.net/page.aspx/387/using-visual-studio-2008-with-iis-7/ But when I do the "2. In Visual Studio, use the Build \ Publish option to publish the contents of your Web application to an IIS 7 Web site. " step I get the following error. ------ Publish started: Projec...

MS IIS - Add users automatically with credential generation

Hey, I'm looking for a solution to automate the user creation process. I need a tool that generates passwords and sends the user credentials in a mail to the added user. Does anyone know an easy way or tool to achieve that? Thanks! ...

.NET1.1 website on IIS7

Hi All, I have just installed windows 7 (IIS7.5) on my development system. I was trying to run my .NET1.1 web applications on it. I have registered .NET1.1, which created an application pool for ASP.NET1.1. The problem I am facing is, when I try to run my 1.1 website using localhost URL, it gives me error "An unhandled win32 exception o...

How to call an external program in ASP.NET such that each visitor gets isolated?

Dear all, Actually I don't know whether my question is related to this thread. I want to create a web application using ASP.NET MVC 2. For simplicity, let my scenario be as follows: A visitor is allowed to submit a text file and get a pdf output from the server. There is an Adobe-Acrobat-like application, that can convert text to pd...