iis-7.5

Error browsing web service and how to configure web site in IIS 7.5

Hi, I have a problem. We recently migrated our web site solution from asp.net 3.5 to asp.net 4.0. The web site have a web service that I have added a new method to. On my local machine (Windows 7, VS 2010,.NET 4.0, IIS 7.5), I have no problem browsing our web service when I use the Visual Studio Development Server, but when I check the...

How to give NT AUTHORITY\IUSR access to shared folder content?

I find something related, but not same thing. http://stackoverflow.com/questions/1269706/the-error-login-failed-for-user-nt-authority-iusr-in-asp-net-and-sql-server-2 My issue is that the files are shared on the network, and I would like to debug from local IIS, I find that all static files seems to be access denied (401.3) I have use...

IIS 7.5 - Rewrite Module Post Back / QueryString Issue

The URL rewrite module doubles the query string in IIS 7.5 on a post back (when appendQueryString="true" which sometimes must be...). Below is an example a rule that works as expected in IIS 7.0 and is in use in our production environment. This is a big issue for us since we are attempting to migrate to a new environment running IIS 7....

IIS 7 Rewrite not support noescape|NE flag

I am trying to install Vinilla forum using IIS 7.5. When I import .htaccess file I face the problem. the origin .htaccess : RewriteEngine on RewriteRule ^([a-z]=.*) index.php?$1 [L,NE] and iis tell it doesn't support NE flag. ...

IIS 7.5 and client authentication

I have to do a proof of concept and thus far I'm finding primarily old articles that reference IIS6 which isn't helping. In short I have the following requirements. I need to secure one file/page and this one file/page only using a client certificate. The rest of the site does need to continue operating under SSL but doesn't require cl...

Why does a worker thread my ASP.NET spawn experience a ThreadAbortException during a Sleep?

I spawn a worker thread in an ASP.NET application running on Windows Server 2008, IIS 7.5 The first thing this worker thread does is sleep for N seconds, and then it does its real work. During the sleep, a catch a ThreadAbortException. Can you explain this behavior, and bonus points of you point me to any IIS/ASP.NET settings that c...

What IIS version does Windows Server 2008 Web Edition come with

Also, if an application works on IIS 7, would it be cool on the new version (if there is any)? ...

SharePoint 2010 / IIS 7.5 Byte-Range Request Responds With Entire File

Hello, I'm having problems getting SharePoint 2010/IIS 7.5 to respect byte-range requests. I'm developing a SharePoint 2010 Web Part using Silverlight, and am trying to retrieve part of a document stored inside SharePoint. When I request a byte range of a file in SharePoint, the server responds with the entire file. However, if I reque...

Ajax request to SQL server opens too many pooled connections

I'm implementing a Google like search box in my asp.net application. Each keypress in the box sends an Ajax request to IIS webmethod that queries the txt and return matches - works pretty cool. However, on loading up activity (e.g. 300 users), I'm getting errors that my 100 Pooled connections are used up. Now I'm rethinking that perhaps ...

Why does Url Rewrite 2.0 not work?

I'm running an .net framework 4 web application project on my local IIS 7.5 with installed URL Rewrite 2.0 module. My application contains a page called sitemap.aspx. I want to be able to map /sitemap/ to the sitemap.aspx This is my code so far and it does not work. Upon calling /sitemap I'll get a 404 Not Found error screen. What is m...

ASP.NET-4 IIS7.5 web.config serverRuntime element

Whenever I add this line to my web.config in the system.webServer section: <serverRuntime /> With our without properties, IIS 7.5 just serves up a blank page instead of the website. I created a new empty Web Application using IIS and added the line to the web.config; blank page. What am I doing wrong? ...

IIS 7.5 ASP.NET-4 Gzip compression

I just can't seem to get GZIP compression enabled for my ASP.NET 4 application. Only javascript files seem to get compressed. The page, css and others dont get compressed. The response header of a not compressed CSS file is: Content-Type text/css Last-Modified Mon, 09 Aug 2010 20:10:34 GMT Accept-Ranges bytes Etag ...

Issue Hosting Silverlight Application on IIS 7.5

Hi, I have an ASP.NET web application (.NET 4.0) that has a few pages, one page with a silverlight application in it. When I debug locally, the silverlight app works fine. When I deploy to my web server (Windows Server 2008 R2, IIS 7.5), the silverlight app will not display. I get an exception in Application_Error saying the following...

Can't debug ASP.NET application stored in IIS

...

msmdpump to SSAS

Hi, I have got msmdpump.dll set up on a windows 7 machine pointing to an SSAS instance on another server and every request I send is being logged in the event viewer with the following error. Event ID: 10 Qualifiers: 16653 Message: Message-handling subsystem: The message manager for the default locale cannot be foun...

IIS 7.5 Invalid authentication headers 401.2 when viewing site in browser

I have a Visual Studio 2010 project that is using Forms Authentiation. It runs fine from within Cassini (visual studio systray IIS, aka pressing F5). I'm using MVC2. I created a website in IIS 7.5 (on my Windows 7 machine) then pointed the physical directory at my Visual Studio project file Enabled only Forms Authentication in IIS ...

Log4Net problem on IIS 7.5 in Windows Server 2008

I have a WCF service running on Windows 2008 R2 64 bit, using IIS 7.5. My appender is logging to a local file, and on my XP workstation a log file is being created in the application folder. Log4NEt is not logging anything on the server. I have tried the following: Ensured that my application pool is running as a domain user account...

How to set permissions on a local virtual directory mapped to an UNC directory

I'm trying to set up test environment that includes a VM (running Win7-x86) hosted on Win7-x64. I want to be able to use VS2010 in the VM, to work on a web application project on the host machine. So I've set up a virtual directory on the VM, and set its physical path as an UNC path. I've set the physical path credential to be an ad...

How do I configure a WCF service that calls other services behind a load balancer?

I haven't deployed behind a load balancer before. My customer has a WCF service built and tested on servers using a service model configuration that is relatively straightforward. It provides a service to return an image of a map for another application. To get the map, it calls other services. The service was built in Visual Studio 201...

Auto-Start ASP.NET Applications

As mentioned here. http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx Is there another way to do this? By just modifying the application's web.config file? ...