The integrated-pipeline-mode tag has no wiki summary.
1
vote
1answer
15 views
Whats the difference between asp.net 4.0 and asp.net 4.0 integrated pipeline?
While looking around in a webhost/website setup panel I came across this
When would I choose a pipeline option over a non pipeline option?
0
votes
0answers
9 views
Server.TransferRequest not working in iis 7.5
i am using Server.TransferRequest in Gobal.ascx for url rewriting module.But when i put the appliaction in server with iis 7.5 it always gives an error.I am using integrated pipleline mode.Can anybody ...
0
votes
0answers
34 views
How to get application root (full physical path) in OnApplicationStarted in MVC3 application?
Until now I used:
Dim appPath = HttpContext.Current.Request.MapPath(HttpContext.Current.Request.ApplicationPath)
But today I moved my app from IIS6 to IIS7 and I get "Request is not available in ...
0
votes
0answers
10 views
Image is not displayed in proper way when application pool pipeline mode is classic.
I am having strange issue. When I set pipeline mode to integrated but when I set it to classic, image is not displayed properly.
What might be the reason?
I am drawing an organization chart using ...
0
votes
1answer
179 views
IIS 7.5 forces the http header CacheControl to Private
In my .NET code, I have a custom handler that process Http request and in the ProcessRequest Method calls a custom HttpModule to set Http Cache Headers.
The HttpModule sets the header in the ...
9
votes
3answers
686 views
IE double postback hangs IIS 7 in Integrated Managed pipeline mode when session is accessed
Here's my environment:
IIS7.5 on Win 7, .NET 4, App Pool Integrated
web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
</configuration>
Test.aspx
<%@ Page ...
0
votes
0answers
64 views
IIS 7 Integrated handler does not match when path does not exist
I'm upgrading from classic to integrated. I upgraded my web.config handlers to the new sections. However nothing worked, so I started a bran new MVC 4 project, created a handler, registered it in the ...
0
votes
1answer
258 views
IIS integrated pipeline mode with `Server.TransferRequest( “Form2.aspx” );`
I have a line of C# code like this:
Server.TransferRequest( "Form2.aspx" );
I run it on IIS 7 without a problem, but when I run my code with Visual Studio 2012 (with its internal server, for ...
4
votes
1answer
115 views
Since installing VS 2012, I'm getting intermittent PlatformNotSupportedException
I've recently installed VS 2012 and .net Framework 4.5, and everything is mostly ok, except that I occasionally get the error:
This operation requires IIS integrated pipeline mode.
I of course have ...
2
votes
1answer
885 views
Impersonate Domain User with Integrated Pipeline
This is a question that continues to haunt me...
In an local Intranet environment, are we doomed to use "Classic" pipeline mode in our App Pool if we want to use Impersonate our Windows domain users, ...
0
votes
0answers
47 views
Why would an IHttpModule receive events for one request but not another when the only difference is the size of the posted file?
I created an IHttpModule and bound it to the BeginRequest event of the HttpApplication. If I send a 14MB zip file, for example, the handler fires. If I send an 800MB zip file, the handler does not ...
1
vote
0answers
151 views
slow PreRequestHandlerExecute in post actions
I have an asp.net mvc 3 application running on IIS 7. The problem is that sometimes the PreRequestHandlerExecute function takes too much time to finish running when doing post actions.
I do not run ...
2
votes
1answer
107 views
Why does GetServerVariable(“HTTP_URL”) return different value depending on the pipeline mode
In IIS, why does calling GetServerVariable("HTTP_URL") of the HttpWorkerRequest class result in different values depending on the pipeline mode?
When running under Integrated mode, it returns the ...
0
votes
0answers
174 views
Reoccurring asp.net integrated managed pipeline mode error
I am developing an aps.net website on my local PC which I do not turn off at all. For some reason, sometime when I leave the project open for a long period (ex at the night and come to continue ...
0
votes
1answer
151 views
RIA Services Web.config default configuration
When I install RIA Services with NuGet (Version 4.1.60730), the default Web.config registeres the domain service module under both and .
This works fine with the development server in Visual Studio ...
0
votes
0answers
142 views
How to turn off file extensions in IIS 7 with classic pipeline mode
I want to turn off file extensions in IIS 7 for the static files.
First I was using integrated pipeline. I added .* type: applications/octet-stream in the mime types and the file extensions were no ...
0
votes
0answers
303 views
IIS integrated pipeline architecture
I've a question on the IIS integrated pipeline architecture.
When in Classic mode (or IIS 6) IIS loads the aspnet_isapi.dll into the worker process, which in turn loads the .NET runtime and passes ...
1
vote
0answers
188 views
IIS7 integrated pipeline forms authentication caches user credentials
I have a problem regardin IIS7 integrated pipeline and forms authentication. My web application is a mix of aspx and html pages and I need to protected both of them with forms authentication.
I've ...
0
votes
0answers
986 views
Is it safe to set validateIntegratedModeConfiguration=false in order to continue using identity impersonate=true?
We have upgraded an ASP.NET web application from IIS6 to IIS7 integrated mode. Our application uses:
<identity impersonate="true"/>
and therefore we have had to set:
<validation ...
5
votes
2answers
642 views
Locking and high CPU when switching IIS from Classic to Integrated mode
In IIS 6 we used to do Url Rewriting with two third party components: Helicon (for handling extensionless url's) and UrlRewriting.net.
Some time ago we migrated to IIS 7 - Classic Mode, still using ...
1
vote
0answers
69 views
Changing the app pool forces XML rather than JSON from web service
I have 2 identical sites.
If I have the app pool as classic, the web service (in the picture) will return JSON.
If I change it to integrated mode, it returns XML.
code
[WebMethod]
...
2
votes
2answers
285 views
Avoiding Integrated pipeline authentication for 404 requests for static files
I have a site running in Integrated mode on IIS7 and have changed the web.config so the static files are authenticated. What I would like to fix is when a request for a not existing file comes in, it ...
1
vote
0answers
345 views
Windows & Forms Authentication in Integrated Pipeline mode
I had a site hosted in IIS 7.5 with the Classic pipeline. I had set the authentication for that site so that Windows and Forms authentication were enabled, but anonymous was not. This caused the user ...
0
votes
2answers
304 views
IIS 7 integrated pipeline - modifying the response HTML
I'm trying to write an IIS extension that modifies the response HTML for a request as it is sent back to the client. I know that traditionally this would be the work of an ISAPI filter however I'm a ...
1
vote
1answer
121 views
Pass a request back to IIS inside a ActionResult
I'm pretty sure the answer is "you can't do this", but if so, ASP.NET MVC is horribly flawed.
I have an ActionResult which needs to serve a static file (the filename is determined in code). For ...
0
votes
0answers
2k views
RegisterForEventValidation can only be called during Render(); In Integrated pipeline
we have 2 web servers with same OS (Server 2008 R2).
I uploaded same asp.net application to both. in one server everything is fine but in another server when it's in integrated pipeline mode throw ...
1
vote
0answers
336 views
Url rewriting module doesn't work on classic pipline in IIS 7.5
I wrote a custom url rewriting http module that's work perfectly in Integrated managed pipline app pool.
but when I turn it to Classic, it stops working.
protected virtual void ...
0
votes
1answer
208 views
How do I configure my MVC app to run in iis integrated mode?
How do I configure my MVC app so that the Visual Studio development server runs it in integrated pipeline mode?
1
vote
1answer
272 views
Form data lost during the authentication process— but only in integrated pipeline mode
I maintain an ASP.NET MVC application (version 1) that currently runs on IIS 7 in classic mode. We'd like to start running the app in integrated pipeline mode instead. However, I am running into a ...
0
votes
1answer
382 views
Windows Server 2008 R2 IIS 7.5 not serving .ashx file properly
I am moving my web apps into a new windows 2008 R2 server with IIS 7.5
There is a third party app which i normally access to it via url http://localhost/start.ashx
But in this new server when i browse ...
0
votes
1answer
484 views
Response.Headers and IIS6
So I'm trying to iterate over Response.Headers for a custom caching job, but I'm getting the following error when I touch the thing:
This operation requires IIS integrated pipeline mode
It this ...
0
votes
1answer
502 views
Diffrentiate static file and asp.net pages in httpmodule - IIS7
In IIS7 integrated mode, especially in ASP.NET MVC and .NET4, all modules run for all request. runAllManagedModulesForAllRequests="true". making runAllManagedModulesForAllRequests="false" give me ...
4
votes
3answers
5k views
Custom HttpModule for IIS 7 for integrated
I'm having troubles with a custom Error handler I built. It should be a HttpModule, but when I add it to my web.config's system.webServer/modules tag, it is not initiated.
This is my web.config ...
1
vote
1answer
668 views
Classic ASP on IIS7 ==> application pool managed pipeline mode “integrated” or “classic”?
On IIS7, does the managed pipeline mode setting for an application pool influence memory consumption behavior of classic ASP web applications?
0
votes
1answer
1k views
Site not redirecting to Default Document in Classic pipeline mode
IIS 7.5
Windows 7 64-bit
.NET 4.0
I have a .NET 4.0 site in IIS 7.5. The Default Document is set to home.aspx.
If the application pools managed pipeline mode is set to "Classic"
...
0
votes
2answers
2k views
How to get Umbraco to handle requests for non .aspx files (IIS integrated pipeline mode)?
I'm trying to get the 301 URL Tracker package for Umbraco to work to my likings.
My goal is to be able to map the old URLs (from another CMS) to the new Umbraco URLs. In my specific situation, the ...
1
vote
1answer
333 views
Problem with Commerce Server 2007 sp2 and ASP.NET Integrated Pipeline
I am using Microsoft Commerce Server 2007 sp2 and a custom ASP.NET 2.0 website. Everything works well in Classic Pipeline, but when I try to use the Integrated pipeline, it fails with the following ...
1
vote
0answers
480 views
Forms Authentication overrides impersonation in IIS7
I have been searching all over the place for a solution to this. Any help is appreciated.
I have an ASP.NET app which ran fine on IIS6. On IIS 7.5 (Integrated pipeline) I am running into some ...
1
vote
2answers
638 views
PHP/IIS Integrated Pipeline Anonymous Visitor HTTP Posts Timeout
I have configured PHP to run under FastCgi on IIS7 on Windows Server 2008 under Forms Authentication/IIS Integrated Pipeline. PHP and even Drupal is working brilliantly for authenticated users. For ...
6
votes
3answers
4k views
IIS7 Integrated Pipeline: Interaction between maxConcurrentRequestsPerCPU and requestsQueueLimit settings
Firstly there's a great overview of the IIS7 HTTP request lifecycle and various settings that affect performance here:
ASP.NET Thread Usage on IIS 7.0 and 6.0
Very specifically though, in dotNet 4 ...
1
vote
2answers
975 views
sitecore template standard values layout not updating all items, layout not loading
i'm currently having a nightmarish moment with Sitecore. Basically my issues are two-fold:
1) the first time i added a standard value item to a template, and added a layout setup to it, i was ...
2
votes
1answer
581 views
Ninject + .NET 4 + Integrated Pipeline results in NullReferenceException
I have configured Ninject 2 in an ASP.NET 4.0 project (not MVC) however when I deploy the project to an IIS host it crashes with the following:
System.NullReferenceException: Object reference not set ...
2
votes
1answer
2k views
How to get Custom Error Pages working for Classic ASP with IIS 7 Integrated Pipeline
I'm working on a website with legacy Classic ASP pages (being converted to ASP.NET on an as needed basis) and new ASP.NET pages. Use of IIS 7 Integrated Pipeline has been very helpful with our ...
1
vote
2answers
640 views
Why do I need 'Classic Mode' in ASP.NET MVC in IIS7?
Why do I need 'Classic Mode' in ASP.NET MVC in IIS7?
Integrated Mode provides more features and better performance, so why do I need Classic Mode?
Perhaps I dont understand the differences, please ...
0
votes
1answer
823 views
HttpContext.Current.CurrentHandler is null in Context_PreRequestHandlerExecute (IIS integrated mode)
Helo community,
I migrate my application to the IIS integrated mode. (IIS 7.5)
I'm using the IIS wildcard mapping, so every request is processing through my application.
In the classic mode I get ...
4
votes
2answers
2k views
IIS7 integrated pipeline mode slower than classic
We are running a complex 64-bit ASP.NET 2.0 application on W2008 R2 Standard and stress tests done with VS2008 Team System have indicated that integrated pipeline mode is 30% slower than classic mode.
...
5
votes
1answer
4k views
HttpModule.Init - safely add HttpApplication.BeginRequest handler in IIS7 integrated mode
My question is similar but not identical to:
http://stackoverflow.com/questions/1123741/why-cant-my-host-softsyshosting-com-support-beginrequest-and-endrequest-event (I've also read the mvolo blog ...
4
votes
2answers
957 views
How to programatically detect if my application is running in IIS 7.0 Integrated mode from within an ASP.NET page
Generally we should have control of our AppPools and be able to force the Managed Pipeline Mode. In my case I don't have control and would like to implement the code behind code a little differently ...
2
votes
1answer
926 views
IIS7 Itegrated Pipeline Mode: Context.User is intermittently null for Windows Auth
Our code relies on checking the Context.User.Identity value in the Global.asax Application_AuthenticateRequest(...) method to retrieve some information about the logged in user. This works fine in ...
14
votes
1answer
1k views
Check if in Integrated Pipeline Mode
Is it possible to check if our code is executing in Integrated Pipeline Mode or not?
There are some ASP.NET class properties that only work in Integrated Pipeline Mode, and I want to avoid raising an ...