Application Pool Mode: Classic or Integrated

I ran into a problem and was hoping if you could give me some tips:

  • I have an Asp.net 4.0 web application that uses spring.net and ext.net libraries. I deployed it to IIS 7 using classic application pool mode and it works. It does not work in integrated mode .

  • I have another asp.net 4.0 silverlight website application that is deployed in IIS 7 using application mode with integrated and it works. This does not work in classic mode .

I created a new ASP.net web application that combines both 1 and 2 web applications above. It uses Ext.Net, spring.Net and Silverlight 4.0. In Visual Studio web server, when I run it in debug mode, it works fine.

When I deploy it in IIS 7, it does not work. How to make the application work in one mode? Is there a web.config parameter that can define parts of a website to run in a different application pool mode?

+3
source share
2 answers

, , [ext.net], , , web.config. W.Net Web.config. ( , , Ext.Net, !)

, "" <system.web><httpModules> <system.web><httpHandlers>, IIS7/Integrated mode <system.webServer><modules> <system.webServer><handlers> .

+5

Source: https://habr.com/ru/post/1793240/


All Articles