473,386 Members | 1,823 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Urgent

Does anyone have any advise on how I can fix the error message shown below?
Thanks in advance for any ideas,
Shane
Server Error in '/' Application.
--------------------------------------------------------------------------------

Security Exception
Description: The application attempted to perform an operation not allowed
by the security policy. To grant this application the required permission
please contact your system administrator or change the application's trust
level in the configuration file.

Exception Details: System.Security.SecurityException: Requested registry
access is not allowed.

Source Error:
Line 42: {
Line 43:
Line 44: Logger.Write("Application_Start");
Line 45:
Line 46: // Initializes various security providers
Source File:
C:\Inetpub\customers\interface\framework\aspnet\ba seApplication.cs Line:
44

Stack Trace:
[SecurityException: Requested registry access is not allowed.]
Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable) +440
System.Diagnostics.EventLog.CreateEventSource(Stri ng source, String
logName, String machineName, Boolean useMutex) +443
System.Diagnostics.EventLog.WriteEntry(String message, EventLogEntryType
type, Int32 eventID, Int16 category, Byte[] rawData) +347
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) +68
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID, Int16 category) +21
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID) +15
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type) +11

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.DistributorEventLogger.WriteToLog(Exceptio n exception, Severity severity)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.DistributorEvents.LogProcessLogException(L ogEntry logEntry, Exception ex)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.LogDistributor.ProcessLog(LogEntry log)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.InProcLogDistributionStrategy.SendLog(LogE ntry logEntry)

Microsoft.Practices.EnterpriseLibrary.Logging.LogW riter.SendMessage(LogEntry
logEntry)
Microsoft.Practices.EnterpriseLibrary.Logging.LogW riter.Write(LogEntry log)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(LogEntry log)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(Object
message, String category, Int32 priority, Int32 eventId, Severity severity,
String title, IDictionary properties)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(Object message)

PointMethod.Customers.Interface.Web.IFS.framework. aspnet.baseApplication.Application_Start(Object
sender, EventArgs e) in
C:\Inetpub\customers\interface\framework\aspnet\ba seApplication.cs:44


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032

Feb 6 '06 #1
2 2686
It seems you are running a web application that acceses Windows registry.
Obviously, the web app running user account (by default, ASPNET or Network
Services) does not have permission to access the registry key.

It also seems you are using MS Enterprise Library Block. So, you may want to
go through the document to see what user privilege is required for that
piece of code to access that Registry Key.

To solve that, you either give appropriate permission to access the said
registry Key (using RegEdt32.exe); or change the web app user account
(impersonate); or, if you think both are pening a security hole, then,
simply do not use that code and change the logic with your own code.

"Shane" <Sh***@discussions.microsoft.com> wrote in message
news:F3**********************************@microsof t.com...
Does anyone have any advise on how I can fix the error message shown
below?
Thanks in advance for any ideas,
Shane
Server Error in '/' Application.
--------------------------------------------------------------------------------

Security Exception
Description: The application attempted to perform an operation not allowed
by the security policy. To grant this application the required permission
please contact your system administrator or change the application's trust
level in the configuration file.

Exception Details: System.Security.SecurityException: Requested registry
access is not allowed.

Source Error:
Line 42: {
Line 43:
Line 44: Logger.Write("Application_Start");
Line 45:
Line 46: // Initializes various security providers
Source File:
C:\Inetpub\customers\interface\framework\aspnet\ba seApplication.cs
Line:
44

Stack Trace:
[SecurityException: Requested registry access is not allowed.]
Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
+440
System.Diagnostics.EventLog.CreateEventSource(Stri ng source, String
logName, String machineName, Boolean useMutex) +443
System.Diagnostics.EventLog.WriteEntry(String message, EventLogEntryType
type, Int32 eventID, Int16 category, Byte[] rawData) +347
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) +68
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID, Int16 category) +21
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type, Int32 eventID) +15
System.Diagnostics.EventLog.WriteEntry(String source, String message,
EventLogEntryType type) +11

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.DistributorEventLogger.WriteToLog(Exceptio n
exception, Severity severity)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.DistributorEvents.LogProcessLogException(L ogEntry
logEntry, Exception ex)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.LogDistributor.ProcessLog(LogEntry
log)

Microsoft.Practices.EnterpriseLibrary.Logging.Dist ributor.InProcLogDistributionStrategy.SendLog(LogE ntry
logEntry)

Microsoft.Practices.EnterpriseLibrary.Logging.LogW riter.SendMessage(LogEntry
logEntry)
Microsoft.Practices.EnterpriseLibrary.Logging.LogW riter.Write(LogEntry
log)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(LogEntry log)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(Object
message, String category, Int32 priority, Int32 eventId, Severity
severity,
String title, IDictionary properties)
Microsoft.Practices.EnterpriseLibrary.Logging.Logg er.Write(Object
message)

PointMethod.Customers.Interface.Web.IFS.framework. aspnet.baseApplication.Application_Start(Object
sender, EventArgs e) in
C:\Inetpub\customers\interface\framework\aspnet\ba seApplication.cs:44


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032

Feb 6 '06 #2
MS Enterprise library's default logging provider is the Event Log. When
you write a log entry using Logger.Write ("") without specifying a
category it will use the default logging categor which is "INFO".

The exception occurs when the enterprise lib is trying to write an
entry to the event log, and might be trying to register an event source
with the event log, which will fail as ASPNET account does not have
prevliges to register write to the event source event log key. Options:

1. Change the default log category of the app to not use Event Log.

- OR -

2. Register the event source used by the enterprise library. (You can
find the event source at loggingdistributorconfiguration.config file,
look for the eventLogName and eventSourceName attributes in the xml
file).

You dont need to provide registry permissions to ASPNET for this. The
only thing required is to register the event source.

Hope this helps...

- NuTcAsE

Feb 6 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Rob | last post by:
I have a form - when you click the submit button, it appends a variable to the URL (e.g. xyz.cgi?inputID=some_dynamic_variable) It also opens a new page. Now, that some_dynamic_variable is...
9
by: Stefan Bauer | last post by:
Hi NG, we've got a very urgent problem... :( We are importing data with the LOAD utility. The input DATE field data is in the format DDMMYYYY (for days) and MMYYYY (for months). The target...
8
by: Mike | last post by:
Hello, I have a few rather urgent questions that I hope someone can help with (I need to figure this out prior to a meeting tomorrow.) First, a bit of background: The company I work for is...
28
by: Tamir Khason | last post by:
Follwing the struct: public struct TpSomeMsgRep { public uint SomeId;
16
by: | last post by:
Hi all, I have a website running on beta 2.0 on server 2003 web sp1 and I keep getting the following error:- Error In:...
7
by: zeyais | last post by:
Here is my HTML: <style> ..leftcolumn{float:left;width:300px;border: 1px solid #ccc} ..rtcolumn{float:left;width:600px;border: 1px solid #ccc} </style> <body> <div class="leftcolumn"...
33
by: dembla | last post by:
Hey Frnds can anyone help me in this i need a program in 'c' PROGRAM to print NxN Matrix 9 1 8 1 2 3 2 7 3 as 4 5 6 6 4 5 7 8 9 in sorted form
8
by: ginnisharma1 | last post by:
Hi All, I am very new to C language and I got really big assignment in my work.I am wondering if anyone can help me.........I need to port compiler from unix to windows and compiler is written...
3
by: N. Spiker | last post by:
I am attempting to receive a single TCP packet with some text ending with carriage return and line feed characters. When the text is send and the packet has the urgent flag set, the text read from...
7
by: Cirene | last post by:
I used to use the Web Deployment Project with my VS2005 projects. Now I've fully upgraded to VS2008. Do I have to download a new version of the Web Deployment Project? If so where can I find...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.