application-pool

A process serving application pool 'App pool' suffered a fatal communication error with the Windows Process Activation Service

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 18:40:27
问题 I have asp.net web forms application. I deployed program to IIS server and program is working well but all of users' InProc session often die at same time. I know that appliaction pool often is recycle. I instaled DebugDiagx64 program and add log this application pool. Result is that Some exception details were omitted due to the following reasons The maximum number of stacks (MAX_CLR_EXCEPTION_STACKS_PER_EXCEPTION_TYPE = 10) for this CLR exception type have been collected: 'NOT_FOUND' The

Can I set identity of my WCF service to run as 'Network Service' so it can reach shared network folders?

落花浮王杯 提交于 2019-12-11 13:57:28
问题 When debugging WCF service I need to use the remote share that stores our test data. But, since I host it on a local machine in IIS5 it doesn't have something like an application pool identity as found in IIS6 or 7, so the process running my WCF doesn't have permissions to reach it. How can I configure my WCF service to use a Network Identity so I can have access to shared folders in network? 回答1: You can try to configure it in machine.config. Try to set processModel element to: <processModel

Unable to fetch application pools from list of remote servers. Looping isnt working

强颜欢笑 提交于 2019-12-11 11:51:04
问题 Can someone please help me on this.!? Following is the ps script that i am working with to fetch application pool details from a remote machine. It works when tried on the same machine or when the script is executed line by line. It isnt working when it is executed as a script file. Then it shows the application pool details of the server from which the script is running throughout its output. The echo is showing hostnames and its looping correctly. But i am not sure why the script isnt

How .Net names its temp folder inside C:\Windows\Microsoft.NET\Framework\v{version}\Temporary ASP.NET Files\root

[亡魂溺海] 提交于 2019-12-11 11:41:48
问题 I have some websites on my IIS machine. Lets say WebsiteA , WebsiteB and WebsiteC . Inside .Net temp folder C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\{folderName} each of the 3 website will have their own folder with some random name. For example: WebsiteA is using a folder named 5a3e1z1j . This folder will have the following path : C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\5a3e1z1j WebsiteB is using a folder named b51o8881 .

Mod mono serves different web application instance over SSH

99封情书 提交于 2019-12-11 10:58:50
问题 I have one asp.net application running on latest Mod mono When I access it through url 1. http://myServer.com/App or 2. http://localhost:81/App I get different instances for each address. How do I know there are different? Through examining Application_Start which actually fires twice and asp.net Application variables which have different values. I use the second address only when I want to connect to my server through SSH, and I use local port forwarding so that each request that is sent

server.transfer with app pool set to “integrated”

谁说我不能喝 提交于 2019-12-11 10:29:25
问题 I have a Facebook application and for various reasons, I need it to run with the app pool set to "integrated". However, when I change the app pool to "integrated", Server.Transfer does not seem to work anymore (It works fine in "classic" mode). The error is: No http handler was found for request type 'POST' Any ideas? 回答1: Try changing your code from Server.Transfer to Server.TransferRequest . I was getting the same error when running my app on IIS7 in Integrated Mode. "No http handler was

Login Failed for user Domain\MachineName$ on IIS 7.5 with an ApplicationPoolIdentity

南笙酒味 提交于 2019-12-11 06:09:29
问题 Actually I was expecting a SqlExcpetion like Login Failed for user IIS AppPool\My AppPool Name exception instead of Domain\MachineName$ . I've created an Application Pool that is using Manged Pipeline Mode : Integrated Identity : ApplicationPoolIdentity This AppPool is assigned to the Web Application (MVC3) in question. But somehow it seems that the WebApp is using somehow the NetworkService for the connection to SqlServer. Any Idea why or what I should change? 回答1: Turns out that I forgot to

cycling IIS app pool cause slow first user experience

爷,独闯天下 提交于 2019-12-11 05:32:50
问题 When i recycle the application pool for my web app via IIS MMC, the first user to request a page within the webapp will experience a really slow response from the site. After that initial request, every page there after is fine. The user could also log off the site, come back later and the speeds are quick. My concern is with the first, initial load of the site. If i were to write a script to restart the application pool at 3am in the morning, what else can i do to either a.) impersonate a

Glimpse MVC3 DLL being 'forgotten' as part of Application Pool recycle

南笙酒味 提交于 2019-12-11 02:26:25
问题 We're trying to get Glimpse up and running in our environment but coming across a strange problem. We've installed Glimpse.Core, Glimpse.AspNet, and Glimpse.Mvc3.dll and when we configure web.config to enable Glimpse everything works fine until the Application Pool recycles . Once the AppPool recycles, it's as if the site 'forgets' about Glimpse.Mvc3.dll and the Mvc3 tabs (Execution, Model, Metadata) disappear. Here are the steps (for us) to reproduce: Modify web.config to include Glimpse

How to set application identity of an application pool using web administration module in powershell?

混江龙づ霸主 提交于 2019-12-11 00:52:12
问题 I am using powershell to automate configuring websites in my IIS. I have the following code that creates a web application pool for me #Creating a new Application Pool New-WebAppPool "NewAppPool" How do I go about setting the application pool identity to "Network Service" from my script ? Please note : There is no IIS Drive on my system. And hence commands which have IIS mentioned in the path like the following fail : Set-ItemProperty IIS:\AppPools\NewAppPool -name processModel.identityType