Catching Application Configuration Error...

  • Thread starter Jason Richmeier
  • Start date
J

Jason Richmeier

Is there a way to catch an application configuration error on startup?

I have written a windows service. If there is an error in the configuration
file (such as invalid xml) the exception is thrown before the OnStart method
is invoked. Is there a way to catch this exception?

Thank you,

Jason Richmeier
 
M

Morten Wennevik [C# MVP]

Hi Jason,

No, errors in the configuration files are thrown by .Net Framework before
the application is loaded. If this is a common issue, consider using a
separate configuration file and load it manually.
 
J

Jeff Winn

Actually, configuration errors are thrown when the configuration is first
accessed, not when the appdomain is being loaded. If your service is
throwing an exception before OnStart is called you might want look at your
code and make sure you aren't accessing the ConfigurationManager somewhere
that would cause it to get thrown before the service has started.

The service is created in your Program.cs file (assuming you're using Visual
Studio), I'd start looking in there first. Also check your service class for
any static variables or class variables that are being set as the class is
being instantiated.

Morten Wennevik said:
Hi Jason,

No, errors in the configuration files are thrown by .Net Framework before
the application is loaded. If this is a common issue, consider using a
separate configuration file and load it manually.

--
Happy Coding!
Morten Wennevik [C# MVP]


Jason Richmeier said:
Is there a way to catch an application configuration error on startup?

I have written a windows service. If there is an error in the
configuration
file (such as invalid xml) the exception is thrown before the OnStart
method
is invoked. Is there a way to catch this exception?

Thank you,

Jason Richmeier
 
M

Morten Wennevik [C# MVP]

Well, since the configuration files may contain sections meant for the CLR
describing how the application is to be run, the configuration file is read
prior to running any application code.

--
Happy Coding!
Morten Wennevik [C# MVP]


Jeff Winn said:
Actually, configuration errors are thrown when the configuration is first
accessed, not when the appdomain is being loaded. If your service is
throwing an exception before OnStart is called you might want look at your
code and make sure you aren't accessing the ConfigurationManager somewhere
that would cause it to get thrown before the service has started.

The service is created in your Program.cs file (assuming you're using Visual
Studio), I'd start looking in there first. Also check your service class for
any static variables or class variables that are being set as the class is
being instantiated.

Morten Wennevik said:
Hi Jason,

No, errors in the configuration files are thrown by .Net Framework before
the application is loaded. If this is a common issue, consider using a
separate configuration file and load it manually.

--
Happy Coding!
Morten Wennevik [C# MVP]


Jason Richmeier said:
Is there a way to catch an application configuration error on startup?

I have written a windows service. If there is an error in the
configuration
file (such as invalid xml) the exception is thrown before the OnStart
method
is invoked. Is there a way to catch this exception?

Thank you,

Jason Richmeier
 
J

Jason Richmeier

I had pretty much come to this conclusion. I wasn't sure if there was
anything that I could put in the Startup class (where Main is located) to
trap the error. I do like the idea you presented. My configuration file has
a custom configuration section so I have to manually load this section anyway.

Thank you,

Jason Richmeier

Morten Wennevik said:
Well, since the configuration files may contain sections meant for the CLR
describing how the application is to be run, the configuration file is read
prior to running any application code.

--
Happy Coding!
Morten Wennevik [C# MVP]


Jeff Winn said:
Actually, configuration errors are thrown when the configuration is first
accessed, not when the appdomain is being loaded. If your service is
throwing an exception before OnStart is called you might want look at your
code and make sure you aren't accessing the ConfigurationManager somewhere
that would cause it to get thrown before the service has started.

The service is created in your Program.cs file (assuming you're using Visual
Studio), I'd start looking in there first. Also check your service class for
any static variables or class variables that are being set as the class is
being instantiated.

Morten Wennevik said:
Hi Jason,

No, errors in the configuration files are thrown by .Net Framework before
the application is loaded. If this is a common issue, consider using a
separate configuration file and load it manually.

--
Happy Coding!
Morten Wennevik [C# MVP]


:

Is there a way to catch an application configuration error on startup?

I have written a windows service. If there is an error in the
configuration
file (such as invalid xml) the exception is thrown before the OnStart
method
is invoked. Is there a way to catch this exception?

Thank you,

Jason Richmeier
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top