Questions tagged «application-pool»



1
设置IIS池的LoadUserProfile时会发生什么情况?
我面临以下问题。 我运行以下代码 var binaryData = File.ReadAllBytes(pathToPfxFile); var cert = new X509Certificate2(binaryData, password); 在两个过程中。其中一个进程运行,LOCAL_SYSTEM并且此代码成功。另一个在IIS内以属于“用户”本地组的本地用户帐户运行,并且出现以下异常: System.Security.Cryptography.CryptographicException Object was not found. at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 hr) at System.Security.Cryptography.X509Certificates.X509Utils._LoadCertFromBlob(Byte[] rawData, IntPtr password, UInt32 dwFlags, Boolean persistKeySet, SafeCertContextHandle& pCertCtx) at System.Security.Cryptography.X509Certificates.X509Certificate.LoadCertificateFromBlob(Byte[] rawData, Object password, X509KeyStorageFlags keyStorageFlags) at System.Security.Cryptography.X509Certificates.X509Certificate2..ctor(Byte[] rawData, String password) //my code here 因此,我用Google搜索了一下,找到了类似问题的答案。我尝试启用LoadUserProfile应用程序池,并且现在可以使用。 问题是我不了解设定时到底发生了LoadUserProfile什么以及可能产生的后果。我的意思是,如果这是一件“好”的事情,那么为什么默认情况下它不处于“开启”状态?为什么它在那里呢? 当我LoadUserProfile在IIS池中进行设置时,究竟会发生什么,会带来什么负面影响?

6
是什么导致IIS中的应用程序池回收?
我一直在搜索有关此信息无济于事。我为什么需要这个背景是我在这里问的另一个问题。更具体地说,在App_Data中创建/更新/删除文件是否会导致池回收? 如果有人可以提供导致回收的原因的详细列表,那将是很好的。 更新:正如两个用户已经注意到的,我也很乐意回答一个仅指定回收AppDomain而不回收整个池的原因的答案。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.