Please use This[^] it will provide you bits and pieces on your system's memory utilization.
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Please use This[^] it will provide you bits and pieces on your system's memory utilization.
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Although Not complete solution, But I got some clues : http://support.microsoft.com/kb/329291[^] http://geekswithblogs.net/TimH/archive/2005/10/05/56029.aspx[^] http://forums.codecharge.com/posts.php?post_id=67135[^] All of the above post states that if application is trying to write to Event Log then is gives such exception. However :confused: You are saying there is no code in application. Still digging. :sigh:
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
:confused: Why ???
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
pradeep455 wrote:
The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Can you please try to inspect if WMI service is running on target machine : C:\>sc query winmgmt SERVICE_NAME: winmgmt TYPE : 20 WIN32_SHARE_PROCESS STATE : 4 RUNNING (STOPPABLE,PAUSABLE,ACCEPTS_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0 If it is not running then start with : C:\>sc start winmgmt
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
pradeep455 wrote:
SecurityException: Requested registry access is not allowed.] System.ThrowHelper.ThrowSecurityException(ExceptionResource resource) +51 Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable) +7460233 System.Security.Cryptography.Utils.get_FipsAlgorithmPolicy() +239 System.Security.Cryptography.RijndaelManaged..ctor() +13 System.Web.Configuration.MachineKeySection.ConfigureEncryptionObject() +232 System.Web.Configuration.MachineKeySection.EnsureConfig() +156 System.Web.Configuration.MachineKeySection.EncryptOrDecryptData(Boolean fEncrypt, Byte[] buf, Byte[] modifier, Int32 start, Int32 length, IVType ivType, Boolean useValidationSymAlgo) +34 System.Web.UI.Page.EncryptStringWithIV(String s, IVType ivType) +83 System.Web.UI.Page.EncryptString(String s) +30
Looks like your are using some session settings in web.config, and that is trying to access machine key for encrypting session data (Although not sure).
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
gvpr wrote:
i am having two dropdownlist one drop hava countrylist. if i select one coountry then second one sholud display the all cities of particular country...
:confused: So what is problem you are facing. Any code snippet which is raising problems
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
satz32 wrote:
My concern is when DAC is singleton, single instance will be shared across all the session.
This depends if DAC is running in separate Application Domain and serving to multiple application instance via Web Service or any other interoperability methodology. Otherwise every application will have associated DAC running in same application domain, No matter how it is implemented.
satz32 wrote:
I am totally confused how it will share the single instance across all the session. If the single instance serve each user request sequentially one after other, application will become slow, or mybe i am thinking completely wrong way.
You can easily figure out if DAC is running in separate instance by inspecting application architecture.
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Try this :
Respose.Redirect("~/second.aspx page?selectedValue=" + DropDownList1.SelectedValue.ToString()
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
:confused: Have you tried to use any of mentioned tool. Better to try out, You will granular report on which function or module is taking most of CPU time.
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
I Hope this will Help Click[^] :)
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Can you please elaborate : what are trying to do and where exactly you are facing problem :)
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
I am not able to get clue about, which kind of application you are working on. If you are developing Window Forms application then you can use SharpDevelop Form Designer[^] for this purpose, Alternatively if you are working on ASP.NET then you have to try some commercial tool kits :)
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Can you please put some more details about how you are implementing web application using Singleton pattern? :)
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Try this : CHAT Application with ASP.NET[^]
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility
Please use profiling tools any of following tools : CLR Profiler[^] NDepends[^] By using above tools, you will come to know expensive part of code. Then you can try to optimize that code. :)
dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility