Questions tagged [iis-7.5]

IIS (Internet Information Services) Version 7.5 – is a web server application and a set of feature extension modules created by Microsoft for use with Microsoft Windows. Released with Windows Server 2008 R2 and Windows 7.

Internet Information Services (IIS7.5) is a web server and a set of feature extension modules created by Microsoft for use with Microsoft Windows. Released with Windows Server 2008 R2 and Windows 7.

Some IIS Links:

See for more information.

4223 questions
2
votes
1 answer

IIS 7.5 Compression In Web Config

What aspects of http compression can be specified in the web config. I have gotten dynamic compression working via changes to the applicationHost file for iis, but I'd like to configure as much as possible inside the application's web config. I have…
TrevDev
  • 1,106
  • 11
  • 24
2
votes
1 answer

Running a .bat file with Process.Start as another user on asp.net mvc application

I'm trying to run a batch file using Process.Start I'm using the following code : Process myProcess = new Process(); myProcess.StartInfo.FileName = "D:\\test.bat"; myProcess.StartInfo.UserName = "user"; var strPass = new SecureString(); for (int i…
Toc
  • 163
  • 2
  • 9
2
votes
1 answer

Handling all exceptions within global.asax

I'm trying to handle all application exceptions within global.asax for an MVC 3 project and whilst everything is working correctly within Cassini, as soon as I deploy to IIS 7.5, IIS starts taking control away from my application and handles many…
John H
  • 14,422
  • 4
  • 41
  • 74
2
votes
3 answers

Load balancing with layer 7 or layer 4

I'm miss understanding what is the different between Layer7 or Layer4 applying load balancing. Is one of them better ? How I can decide which more applicative to my system ? Thanks in advance ...
Wasim
  • 1,915
  • 5
  • 24
  • 39
2
votes
3 answers

Update site bindings in applicationHost.config

I am trying to add a list of site bindings to the applicationHost.config file as opposed to manually adding each one through IIS 7.5.
Leo
  • 224
  • 1
  • 3
  • 12
2
votes
1 answer

IE error message: "This website has been reported as unsafe"

I have written a site in C# asp.net and I am running it of IIS7.5. Site works perfectly well with other browser than IE9 and IE10. In these browsers i get this error message: http://imageshack.us/photo/my-images/16/unsafefilterss.png/ The site is…
Bjørn
  • 1,138
  • 2
  • 16
  • 47
2
votes
2 answers

IIS 7.5 Crashes when sending big XML

I have a web service that returns a XML file. The first request returns a XML file that its size is around 50MB, and any new request will be much smaller, more like 1KB or so. My IIS is crashing when sending the big XML (only on the first…
m0fo
  • 2,179
  • 6
  • 33
  • 43
2
votes
3 answers

Using Regular Expression how to remove if a certain character is at the end?

I am trying to write a URL rewriter rule in IIS7. My current reg expression is ^(policy|pricing|contact|gallery)/(.*) My Rewrite rule is: /{R:1}.aspx?cat={R:2} policy/ (Keep Slash in this case, WORKS) gallery/soccer (No slash…
NYTom
  • 524
  • 2
  • 14
2
votes
3 answers

Running IIS .NET4 Application under a .NET2 Site

Is it possible to host a .NET 4 application under a .NET 2 site? For several reasons we have to run the main site on .NET 3.5, but there is an application written in entity framework 4, which hosted under the same domain/port. When I try to add an…
Bit Hunter
  • 849
  • 1
  • 6
  • 8
2
votes
0 answers

SL5 In Browser WebBrowser Control error "Trying to revoke a drop target that has not been registered" when re-navigating to another PDF

Finally bit the bullet and replaced my hack for displaying PDF content inside a silverlight app with a proper SL5 Trusted In-Browser WebBrowser that navigates to a .pdf. When i try to RE-navigate the WebBrowser to another PDF I am seeing the error…
felickz
  • 4,292
  • 3
  • 33
  • 37
2
votes
0 answers

IIS7.X remove directory from being compressed with gzip

I am trying to remove one directory from being gziped as it causes errors on the browser. Here is the code I have. I've read that I can't disable one page only, but there is a way to disable a directory path. I don't have access to server settings,…
bobek
  • 8,003
  • 8
  • 39
  • 75
2
votes
1 answer

.net moved files lose original and parent folder security permissions

I have a CMS driven website which has been working absolutely fine. We recently moved it from a Windows 2008 server to a Windows 2008 R2 server. As far as I could tell the folder permissions were replicated correctly, but we have been finding that…
Anthony Main
  • 6,039
  • 12
  • 64
  • 89
2
votes
2 answers

Gettext on php/iis/win7, wrong charset

I am refactoring some old app in php 5.2.17 and converting it to UTF-8 charset. App uses gettext, but for some reason, gettext returns data in cp1250 (on win7 witch czech national environment) even if all texts are now UTF-8 and catalog texts too. I…
Fanda
  • 3,760
  • 5
  • 37
  • 56
2
votes
1 answer

Getting Absolute Website URL Without Using HttpContext Request

I need to access the website url in Application_Start event. Since HttpRequest in context will not be valid, I am unable to retrieve URL. Are there any alternative to retrieve URL of the application? For example, I need to fetch…
Lokeshwer
  • 1,139
  • 1
  • 9
  • 14
2
votes
1 answer

Change http status 404 to 503 when serving app_offline.htm

We added app_offline.htm. All request return something "Site under reconstruction" and 404 error. What I may do for return 503 error?
GraDea
  • 588
  • 7
  • 23