iis7

Virtual Database in Memory

Imagine the following: I have a table of 57,000 items that i regularly use in my application to figure out things like targeting groups etc. instead of querying the database 300,000 times a day, for a table that hardly ever changes it's data, is there a way to store its information in my application and poll data in memory directly? Or...

"Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'." to SQL Server 2005

I'm trying to migrate a legacy application we have to Windows Server 2008 x64 and IIS7. It's written in Classic ASP and connects to a SQL Server 2005 database. However, when the page runs, I receive the error: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. The connection string I'm...

CAQuietExec fails in WiX installer while executing inetsrv\appcmd

I'm writing some CustomActions in WiX to migrate a web.config from IIS6 to IIS7 and am getting an error. However if I copy and paste the failing command from the install log file, it succeeds. Here's section of the log file that indicates the error. You'll see the first two appcmds succeed but the last migration command fails. Action 10...

Visual Studio 2008 - How to debug my IIS hosted WCF server project when client test project is set as startup

I am developing a secure set of service using WCF wsHttpBinding. I had to switch from Cassini to my local IIS due to working with SSL, etc. I have my certificates setup, etc. I can debug fine if I startup my WCF project. My WCF client is in a test project in the solution. When I set my test project as the startup project, and Debug, Vis...

blog softwares for IIS7 and sql server 2008 back end

I need blog software for IIS7 and a SQL Server 2008 backend. I don't know if this is required, but the application (website) I'm hosting is in asp.net (vb.net). Does anyone have any ideas? I checked out das blog, and graffiticms and they're very old. Thanks in advance. ...

Sitemap Links don't work on live site, Windows Authentication

I have a intranet site with Windows Authentication. I have 'Administrator' pages in an 'Administrator' folder that will only show for those in the admin group (windows security group) These pages work I have a folder with sub folders containing reports. These permissions are broken down for each type of report. They have similar rol...

IIS 7 Error Page for file with asp Extension

I have tried many ways but unable to do this. I have set the web.config as below. <?xml version="1.0"?> <configuration> <system.webServer> <asp scriptErrorSentToBrowser="true"/> <httpErrors> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" prefixLanguageFilePath="" path="/index.asp" responseM...

CSS, Javascript and Images have zero length

Hi, I'm trying to port an ASP.NET MVC 1.0 / Visual Studio 2008 project to ASP.NET MVC RC 2 / Visual Studio 2010. The project is (and has always been) running on IIS 7. Dynamic content (everything that's being delivered by controllers) works fine, but static content such as CSS / Javascript / Images gives me a "200 OK" response, a Cont...

Redirecting to another domain but same server

Hi there, I have two domains for example www.male.com and www.female.com which both point to the same website app. In this app I have an HTTP module which checks if the session of the user is still active and if so checks if the user is a male or female. I want to check from which domain the user entered the website. If the user is a m...

Can I configure IIS 7 Logging using Web.config?

I want to configure IIS 7 logging options (log file format, request fields included, log file rollover, etc.) using a site-level Web.config file. Is this possible? I assumed system.webServer/httpLogging would let me do what I need, but there are only two attributes available on that element and no child elements. ...

How to set up local copies of development sites with NTLM authentication

I'm a developer on a site that uses NTLM (Windows integrated) authentication. It's a Coldfusion-based intranet. Authentication is to the Active Directory domain. The site is deployed on IIS 6, and I'm trying to work with a development copy of it on my Vista development box, running IIS 7. I have enabled Windows Authentication and d...

Get client certificate for page registration

I want to make a registration page for clients, that would only contain a button register and unregister. When the user would click on any of these 2 button he would should be prompted to select a client certificate from his computer. I would also like to extract the email address from the selected certificate. Is there any way of decla...

PHP5 ISAPI on Windows 7 (64 bit)..

Anyone running into issues with this setup? I'm getting this message: This PHP CGI binary was compiled with force-cgi-redirect enabled. This means that a page will only be served up if the REDIRECT_STATUS CGI variable is set, e.g. via an Apache Action directive. However, I've set cgi.force_redirect equal to 0, and have reset IIS. ...

Creating cookieless application on development machine with asp.net

I tried posting this on ServerFault with no luck so i am trying here. I am thinking about setting up a new domain to host static content on my website and have it cookieless just like Stackoverflow with their static domain. So before going ahead and buying the domain and setting it up I wanted to test it on my developement machine firs...

Deloying MVC Application to Web Server doesn't run correctly...

Hello, I have reading posts all night looking for an answer to my issue and haven't found anything that works for me yet. I am sure there is a simple way to do this but I haven't been able to discover it yet. Details: MVC 2 Preview Asp.net 3.5 sp1 framework VS 2008 C# web application Windows Server 2008 IIS 7 I have the application r...

How to deploy classic asp website?

I would like to know how to deploy or what are the steps that are involved to deploy a classic asp website in IIS 6/7 Can we create an installer for the existing project? ...

My IIS7 showing form authentication section is "This feature has been locked or read only" for my asp.net vertual directory. How can i unlock this?

Please help me. It is urgent.. ...

Could not find file "C:\WINDOWS\TEMP\xxxx.dll

Hi All, I know this question has been asked many times and I have done some extensive research on the internet to try and resolve the issue but everything I have tried has failed and I really need to sort this issue out, hence my post. Here is what I have tried: Change the directory in which the temp files are stored. (Changed locally...

How can I optimize MVC and IIS pipeline to obtain higher speed?

Hi, I am doing performance tweaking of a simple app that uses MVC on IIS 7.5. I have a StopWatch starting up in Application_BeginRequest and I take a snapshot at Controller.OnActionExecuting. So I measure the time spend in the entire IIS pipeline: from request receipt to the moment execution finally gets to my controller. I obtain 700 ...

Virtual Path Provider not loaded in IIS7 but works in Cassini

I have a scenario where certain aspx files are loaded from database dynamically on request and i have a virtual path provider to handle the same. It works pretty well during debugging, i.e. in cassini server. However when hosted on IIS7, though the module is loaded, it does not handle any of the files (extensions) it handles during debug...