Tagged Questions
0
votes
1answer
17 views
Does storing URL rewrites in a separate file override manual entries?
Currently working with an external file for URL rewrites called rewritemaps.config (following these instructions), which works great. However, we have occasion to override an entry in that file with ...
0
votes
0answers
21 views
Deploying website(asp.net mvc in to Azure) : 500 - Internal server error
I need to upload file(more than 4MB) into my AzureBlobStorage
I added to webconfig this code:
<system.webServer>
<security>
<requestFiltering>
<requestLimits ...
0
votes
0answers
27 views
web.config not accepting url queries
Below is an example of the code in the web.config document. This method works just fine, but it's only to show that we have it working. We are running IIS 7.5 and MS Windows Web Server 6.1.
...
0
votes
1answer
44 views
301 Redirect Rule is not working when I use full URL
I have a rule in my web.config on asp.net 4.5 and iis 7.5
<rule name="baad4041-5e25-499f-abb7-6bd4f76b2ed3" stopProcessing="true">
<match url="http://www.domain.com/ThisIsOld.html" />
...
0
votes
1answer
256 views
IIS 7.5 HTTP to HTTPS redirect
I am trying to have all HTTP requests redirect to HTTPS.
Here is my web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers ...
0
votes
1answer
67 views
Security of IIS 7.5 impersonation?
I posted this question here before: http://security.stackexchange.com/questions/34405/iis-7-5-impersonation-threat but I thought I would try it here as well if that's ok.
I am using IIS 7.5 and I ...
2
votes
0answers
362 views
@using(Html.BeginForm()) returning Format exception mvc4
I have an MVC4 web app running without any issues on my dev machine but once i deploy it to the host server i get the following exception thrown on @using(Html.BeginForm()).
String was not ...
0
votes
1answer
186 views
Web.config in virtual directory is not overriding parent website's Web.config
I've got a website which has a virtual directory that also includes a website, and when I try to launch a page from the virtual directory, I receive an IIS 7.5 error that the name (from the connection ...
0
votes
0answers
287 views
URL Routing / MapRequestHandler error for HTML page in IIS
In my localhost, I cannot setup working environment. I copied web.config from staging where everything is ok. I get error 404 for html page.
Module IIS Web Core
Notification MapRequestHandler
...
0
votes
0answers
30 views
why do i have to add <httpErrors> in web.config?
Do I have to include the httpErrors in web.config if i want to have my own custom pages?
Hi:
I am having something weird going on with my web app. I have a customError set in place already
...
0
votes
1answer
51 views
I need to redirect an old directory to a new directory with web.config
I'm trying to 301 redirect Example.com/thepage/ to Example.com/web/thepage/
with a web.config file.
Im using IIS 7.5 and i'm working with asp.
I have tried googling and browsing forums, but i'm new ...
0
votes
0answers
18 views
How to restrict acess to simple anon iis site
I have access via share to the iis folder where I can put (in this case) my plain html files, but dont have access to the server, etc.
I wanted to block/restrict access to (most)users viewing these ...
0
votes
1answer
246 views
IIS 7.5: Special characters in url rewrite external file
I have ran into the "max web.config size" for one of my applications running on iis7.5, before editing the registry to increase this value, I tried to move all the rewriteMap rules into an external ...
1
vote
1answer
169 views
In IIS, how should environment/site-specific WEB.CONFIG settings be preserved, when using MSDeploy?
Background
I work in QA at a software company.
We have about a half a dozen different web applications, each of which may require, at any given site, some customised settings added to its web.config ...
1
vote
0answers
486 views
httpCompression override in web.config ASP.NET IIS7.5
I have this code in my web.config for an ASP.NET 4.5 website running in IIS 7.5
<system.webServer>
<urlCompression doStaticCompression="true" doDynamicCompression="true"
...
0
votes
0answers
57 views
webservice and silverlight app make configuration confused
i make an silverlight application for taking webcam picture. i save it in server folder using webservice.it works fine in visual studio default server.now i want to publish it and host it iis.but i ...
0
votes
1answer
842 views
MVC 4 website load shows HTTP Error 500.19
I created a new ASP.NET MVC 4 application based on Internet application template, I could succesfully run it and authenticate user from within VS 2012 Express.
Then published it to a folder in ...
1
vote
1answer
361 views
Adding system.web applicationpool to web.config causes 500 internal server error
I'm trying to add the following to my webconfig
<system.web>
<applicationPool maxConcurrentRequestsPerCPU="5000" maxConcurrentThreadsPerCPU="0" requestQueueLimit="5000"/>
...
0
votes
2answers
268 views
Web.config urlMappings - works for local pages, not remote pages
I have a MVC4/.Net 4 website running on IIS 7.5. In my web.config file I have the following in my block:
<urlMappings enabled="true">
<add url="~/2013calendar" ...
0
votes
0answers
118 views
web.config redirect group multiple files to one destination
I found how to redirect dead pages to current live pages for my updated site.
e.g. redirect (with this research )
www.example.com/page.htm
www.site.com/page.asp
Now, I want to minimize work and ...
0
votes
1answer
469 views
IISExpress 7.5 has Internal Server Error, whereas IIS 7.5 works
I have the following <handlers /> section in my web.config to register ActiveReports 6 handlers for various file extensions:
<handlers accessPolicy="Read, Execute, Script">
<add ...
2
votes
2answers
674 views
IIS 7.5 throws sc-win32-status: 995 after 60 seconds on web service (ASMX) request
I have a Web Application in .NET 4.0 Integrated mode calling a web service (ASMX) in .NET 2.0 Integrated mode on the same server via localhost.
9 out of 10 times all works fine, but occasionally the ...
1
vote
1answer
377 views
IIS 7.5 URL Rewrite rule higher priority than folder
I have this rule in web.config.
<rule name="RewriteSourceCategorySuburb" stopProcessing="true">
<match url="(news)$" />
<conditions logicalGrouping="MatchAll" ...
0
votes
0answers
130 views
custom 404 in web.config loop
i have in my web.config file for iis 7.5 this rule
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404" subStatusCode="-1" />
<error ...
2
votes
3answers
742 views
Asp.net redirect from login to main page
i have 2 pages on my webapp. Login.aspx and Main.aspx.
After a successful login username and password i redirect from login.aspx to Main.aspx as shown below in c#.
This works fine in visual studio ...
0
votes
0answers
260 views
IIS 7.5 ignoring web.config file settings
I am trying to configure 'vanity urls' and custom error documents on one of my clients windows servers but am having trouble with the web.config file.
On my server, this file works absolutely ...
0
votes
0answers
377 views
Configuration error in IIS 7.5
We are migrating web application from IIS 6 to IIS 7.5. I have web.config file in root directory. I have given full control access to AppPoolIdentity. When I browse application it is working fine when ...
1
vote
1answer
66 views
How to configure alwaysAllowedQueryStrings in IIS 7.5
Now I have issue on web-site which developed by me. If user types a sequence of dots (more than 2) to the end of URL, he will get default 404 response from IIS. But I want that this case will be ...
2
votes
0answers
205 views
Add Application to IIS Web Site programmatically (or in web.config)
Is there a way to add a sub/child application to an existing IIS Web Site?
I know this can be done by the IIS Admin Gui but in some CMS'es like EPiServer this can be done by config. Somehow creating ...
0
votes
0answers
262 views
WCF with netTcpBinding and BasicHttpBinding
I want to host a WCF in IIS 7.5 that allows http and tcp. I followed a few guides from some SO answers but I'm not able to browse to localhost/WcfDirectory/Wcf.svc. It keeps showing "Could not find a ...
2
votes
1answer
451 views
Multiple Web/WCF Projects in One IIS Application
An Visual Studio project, for ASP.NET or WCF, typically is assigned one-to-one with an IIS application. But what if, for example, I want two WCF projects to be hosted in the same appdomain within ...
0
votes
0answers
97 views
URL rewrite to change 2nd level domain but keep sub and top domain
We have an old domain name (on several top domains) that we want to redirect to the corresponding page on the new domain name.
Hence, we want to keep subdomain and topdomain and just change 2nd level ...
0
votes
0answers
736 views
ASP.Net MVC 3/4 Hosted on IIS 7.5 Default Handler Mappings
What are the correct Default Handler Mappings for ASP.Net, ASP.Net MVC and WCF Services hosted on IIS 7.5 .Net Framework 4.0 on Windows 7 (PRO)?
Out of a team of 8 developers who installed ASP.Net ...
0
votes
1answer
287 views
An error occurred during the processing of a configuration file required to service this request
This error occured to me and i cant find the cause of it. The only changes that have happened are some database schema changes, no webconfig changes whatsoever, and i am using a custom role provider ...
0
votes
1answer
526 views
Settings from system.webserver sometimes removed from web.config file
We've come across a rather annoying bug in IIS7.5 where it occasionally removes the contents of the tag in the web.config. It doesn't just remove the contents at runtime, it actually physically ...
1
vote
1answer
810 views
.NET compilation in IIS 7.5 throws an error related to web.config [duplicate]
Possible Duplicate:
Unrecognized element 'folderLevelBuildProviders'?
I've setup a new EC2 Windows instance on Amazon AWS with Windows 2008 RC2. I've installed IIS 7.5 role and ...
1
vote
2answers
489 views
Conditional location authorization in web.config?
In IIS 7.5 web.config we can set authorization for various paths/folders like so:
<location path="logs/elmah/elmah.axd">
<system.web>
<authorization>
<allow ...
1
vote
0answers
1k views
maxRequestLength vs. maxAllowedContentLength on IIS 7.5
maxAllowedContentLength is supposed to work on IIS 7+ servers but apparently my server doesn't want to take this value into account when uploading (ASP.NET MVC 3 website). Now that I included ...
0
votes
1answer
566 views
Trying to deploy MVC 3 application using shared hosting, getting 403 - Forbidden: Access is denied
In the control panel I can see that I am using IIS7.5, ASP.NET Version 4.
I have all the MVC3 dependencies in the /BIN folder too. The root folder has correct file access [read only] and I would think ...
1
vote
1answer
378 views
How to get x-server variable back in IIS 7.x
I'm not sure if this was a change in IIS 7 or if someone before me actively removed X-Server from the HTTP response headers but I need to be able to tell which server in the farm served the current ...
3
votes
1answer
345 views
Error on trying to configure RavenDB in IIS mode
Following the steps in this tutorial, the first item of "Setting up with IIS 7.5" after clicking on "Modules" in inetmgr, the following error occurs:
Full image: ...
0
votes
0answers
678 views
Custom JSON handler IIS 7.5 Classic asp.net pool
I have following problem, i have custom written JSON handler in asp.net, that should map to *.json extension. When running application under IIS7.5 on Win7x64 box in Integrated mode, everything works ...
2
votes
1answer
1k views
issue with Telerik_Web_UI_WebResource_axd
When I run my website, I get the following error message
Cannot add duplicate collection entry of type 'add' with unique key attribute 'name' set to 'Telerik_Web_UI_WebResource_axd'
Here are the ...
0
votes
1answer
2k views
IIS 7.5 How do you add a Dynamic HTTP Expires Header
In IIS 7.5, you can add static HTTP Response headers, but I want to add an "Expires" header that always specifies a date that is 7 days in the future.
I'm running php 5.4, so I'd like a solution that ...
0
votes
1answer
220 views
IIS web config error
I have recently been trying to install TargetProcess on my windows 7 machine.
I have gotten so far as to successfully install it while running IIS and an SQLEXPRESS instance. when I point my web ...
2
votes
0answers
335 views
Gzip with web.config IIS 7.5 doesn't work
I'm using the following code in my web.config on the IIS 7.5 server to enable gzip but it doesn't work. The host says it is an error in my code. Can someone help me please?
<?xml version="1.0" ...
2
votes
3answers
2k views
What causes a 404.4 on IIS 7.5 for delivering a static file?
I'm trying to set my default page to Index.html on an ASP.NET site running on IIS7.5. I keep getting a 404.4 which tells me that a handler is not set up. However, I have a <handler> and an ...
4
votes
1answer
1k views
Add custom header based on file type
We are trying to add a custom header (X-Robots-Tag) for sitemap files in IIS 7.5. However, it does not appear that IIS supports custom headers based on a file type or wildcard (only subfolders).
Can ...
1
vote
1answer
166 views
Completing a regular expression in IIS7.5 that succeed in matching, but fails in the subsequent rewrite
I have a folder with an image in it called:
/products/12345/800.jpg
where 12345 = a database id and 800.jp is a 800 pixell wide image.
I want to create a nice url like this:
...
2
votes
1answer
925 views
Can we override parent website's web.config?
I have a website and a sub website. Now I am facing problem that is my sub website's web.config file is inheriting parent website's web.config file. My parent website's web.config file has some ...

