473,397 Members | 1,960 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,397 software developers and data experts.

Machine Config

Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????
With regards
Tarun Sinha

May 10 '06 #1
11 3416
> Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????

With regards
Tarun Sinha


machine.config is a single file that holds configuration for the entire
machine,
web.config is web-application specific. You might have multiple copies.

Example: we have multiple sites on our server, that need separate
connection strings!
Hans Kesting
May 10 '06 #2
You can use any number of XXX.Config. The Machine.Config provides
configuration settings for the ENTIRE web server. Each Web.Config
provides configuration settings to its OWN directory, and all sub
directories below it. Configuration files in child directories can
supply configuration information in addition to that inherited from
parent directories, and the child directory configuration settings can
OVERRIDE or modify settings defined in parent directories.

-Rick

May 10 '06 #3
Thank's for repl me so soon, but,
if we have an multiple site then we have also an mutiple web config ..
then why we require for
machine config, we can get the info about configuration setting from
web config instead of machine config

with regards
tarun sinha

May 10 '06 #4
Tarun,

you may want to have machine-wide settings regardless of application-specific settings.

The machine-wide settings are written in machine.config,
and the application-wide settings are written into any of a number of web.configs.

Also, in a web-hosting situation, you might want to disable certain features,
or assign certain security features per machine, and not only per application.

An example, would be the ability to assign security permissions for the whole machine.

You certainly don't want individual users ( which could be many )
to be able to change security settings for the whole machine.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
Thank's for repl me so soon, but,
if we have an multiple site then we have also an mutiple web config ..
then why we require for
machine config, we can get the info about configuration setting from
web config instead of machine config

with regards
tarun sinha

May 10 '06 #5
Big misconception here.

read this carefully.
Microsoft named "machine.config" incorrectly. Microsoft should have called
it "framework.config"
machine.config is not for the entire machine but for the entire machine that
is using a specific framework
Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same time
on one machine then you can have multiple machine.config files. One for
each framework.

This is a trick question on an interview.

Also machine.config "framework.config" has allot of configurations that
are common and then you can specialize your configurations in your
web.config for each web application you have on your server.

SA
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com...
Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????
With regards
Tarun Sinha

May 10 '06 #6
re:
Microsoft named "machine.config" incorrectly. Microsoft should have called it
"framework.config"
Let's not get hung up on semantics here.

It *is* machine.config...for the framework version
installed in the directory where that machine.config is found.

i.e., that "machine.config" has machine-wide scope for that framework version.

Machine.config is aptly named.

It's OK to have more machine.config files in other framework installation directories.
There's no difference in naming the file "machine.config" or "framework.config".

Something else to keep in mind, in regard to the OP's question, is that some of the configuration
parameters in machine.config refer to desktop and console apps, and don't necessarily refer to
*web* apps...so a "machine.config" file can have other purposes than configuring web apps.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message news:uV**************@TK2MSFTNGP02.phx.gbl... Big misconception here.

read this carefully.
Microsoft named "machine.config" incorrectly. Microsoft should have called it
"framework.config"
machine.config is not for the entire machine but for the entire machine that is using a specific
framework
Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same time on one machine then
you can have multiple machine.config files. One for each framework.

This is a trick question on an interview.

Also machine.config "framework.config" has allot of configurations that are common and then you
can specialize your configurations in your web.config for each web application you have on your
server.

SA
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com...
Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????
With regards
Tarun Sinha


May 10 '06 #7
I disagree, We are not hung up here we need better names when possible.

Why companies correct, modify things then? Why not keep everything the
same?
machine.config is deceiving.
framework.config would have been better. Over the years many companies
including Microsoft have named things in a way that can be better. Thanks
to Microsoft things are changing for the best because Microsoft is listening
to people like us. Good example is local.live.com, New Hotmail Beta, etc.
etc. etc..

If we get stuck in the past we never improve the future. If we don't look
for improvements we never get better.

Thanks for your thoughts.

SA
you are right machine.config is not only for web.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
re:
Microsoft named "machine.config" incorrectly. Microsoft should have
called it "framework.config"


Let's not get hung up on semantics here.

It *is* machine.config...for the framework version
installed in the directory where that machine.config is found.

i.e., that "machine.config" has machine-wide scope for that framework
version.

Machine.config is aptly named.

It's OK to have more machine.config files in other framework installation
directories.
There's no difference in naming the file "machine.config" or
"framework.config".

Something else to keep in mind, in regard to the OP's question, is that
some of the configuration
parameters in machine.config refer to desktop and console apps, and don't
necessarily refer to
*web* apps...so a "machine.config" file can have other purposes than
configuring web apps.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP02.phx.gbl...
Big misconception here.

read this carefully.
Microsoft named "machine.config" incorrectly. Microsoft should have
called it "framework.config"
machine.config is not for the entire machine but for the entire machine
that is using a specific framework
Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same
time on one machine then you can have multiple machine.config files. One
for each framework.

This is a trick question on an interview.

Also machine.config "framework.config" has allot of configurations that
are common and then you can specialize your configurations in your
web.config for each web application you have on your server.

SA
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com...
Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????
With regards
Tarun Sinha



May 10 '06 #8
re:
Thanks for your thoughts.
Thanks for yours.

I still think that it's a semantic thing...and that machine.config is aptly named.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message news:uI**************@TK2MSFTNGP05.phx.gbl...I disagree, We are not hung up here we need better names when possible.

Why companies correct, modify things then? Why not keep everything the same?
machine.config is deceiving.
framework.config would have been better. Over the years many companies including Microsoft have
named things in a way that can be better. Thanks to Microsoft things are changing for the best
because Microsoft is listening to people like us. Good example is local.live.com, New Hotmail
Beta, etc. etc. etc..

If we get stuck in the past we never improve the future. If we don't look for improvements we
never get better.

Thanks for your thoughts.

SA
you are right machine.config is not only for web.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
re:
Microsoft named "machine.config" incorrectly. Microsoft should have called it
"framework.config"


Let's not get hung up on semantics here.

It *is* machine.config...for the framework version
installed in the directory where that machine.config is found.

i.e., that "machine.config" has machine-wide scope for that framework version.

Machine.config is aptly named.

It's OK to have more machine.config files in other framework installation directories.
There's no difference in naming the file "machine.config" or "framework.config".

Something else to keep in mind, in regard to the OP's question, is that some of the configuration
parameters in machine.config refer to desktop and console apps, and don't necessarily refer to
*web* apps...so a "machine.config" file can have other purposes than configuring web apps.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message news:uV**************@TK2MSFTNGP02.phx.gbl...
Big misconception here.

read this carefully.
Microsoft named "machine.config" incorrectly. Microsoft should have called it
"framework.config"
machine.config is not for the entire machine but for the entire machine that is using a specific
framework
Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same time on one machine then
you can have multiple machine.config files. One for each framework.

This is a trick question on an interview.

Also machine.config "framework.config" has allot of configurations that are common and then
you can specialize your configurations in your web.config for each web application you have on
your server.

SA
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com...
Hello All

I need to ask about the configuration file in .NET,
There are Two config File
1. Web Config
2. Machine config
I understand the the usage of Web config , but not able to understand
the usage of Machine config.
I read in the article that you can also write your database connection
string in Machine Config
if this is true then why the people using web config , we can write the
whole configurartion
setting in machine.

Can any explain me why .net frame work requires two configuration file
if we write the same content (config setting) in both the files ????
With regards
Tarun Sinha



May 10 '06 #9
Juan,

The name framework.config - or equivalent has lots of implicit meta data in
it.
How many users ( including myself in the past ) got confused about
machine.config vs. every framework has a machine.config for the entire
machine?
At times that saves time when things are precisely named.

God Bless and thank you again.

SA
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:Ou**************@TK2MSFTNGP04.phx.gbl...
re:
Thanks for your thoughts.


Thanks for yours.

I still think that it's a semantic thing...and that machine.config is
aptly named.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message
news:uI**************@TK2MSFTNGP05.phx.gbl...
I disagree, We are not hung up here we need better names when possible.

Why companies correct, modify things then? Why not keep everything the
same?
machine.config is deceiving.
framework.config would have been better. Over the years many companies
including Microsoft have named things in a way that can be better.
Thanks to Microsoft things are changing for the best because Microsoft is
listening to people like us. Good example is local.live.com, New Hotmail
Beta, etc. etc. etc..

If we get stuck in the past we never improve the future. If we don't look
for improvements we never get better.

Thanks for your thoughts.

SA
you are right machine.config is not only for web.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
re:
Microsoft named "machine.config" incorrectly. Microsoft should have
called it "framework.config"

Let's not get hung up on semantics here.

It *is* machine.config...for the framework version
installed in the directory where that machine.config is found.

i.e., that "machine.config" has machine-wide scope for that framework
version.

Machine.config is aptly named.

It's OK to have more machine.config files in other framework
installation directories.
There's no difference in naming the file "machine.config" or
"framework.config".

Something else to keep in mind, in regard to the OP's question, is that
some of the configuration
parameters in machine.config refer to desktop and console apps, and
don't necessarily refer to
*web* apps...so a "machine.config" file can have other purposes than
configuring web apps.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP02.phx.gbl...
Big misconception here.

read this carefully.
Microsoft named "machine.config" incorrectly. Microsoft should have
called it "framework.config"
machine.config is not for the entire machine but for the entire machine
that is using a specific framework
Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same
time on one machine then you can have multiple machine.config files.
One for each framework.

This is a trick question on an interview.

Also machine.config "framework.config" has allot of configurations
that are common and then you can specialize your configurations in your
web.config for each web application you have on your server.

SA
"TARUN" <ta*********@gmail.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com...
> Hello All
>
> I need to ask about the configuration file in .NET,
> There are Two config File
> 1. Web Config
> 2. Machine config
> I understand the the usage of Web config , but not able to understand
> the usage of Machine config.
> I read in the article that you can also write your database connection
> string in Machine Config
> if this is true then why the people using web config , we can write
> the
> whole configurartion
> setting in machine.
>
> Can any explain me why .net frame work requires two configuration file
> if we write the same content (config setting) in both the files ????
>
>
> With regards
> Tarun Sinha
>



May 10 '06 #10
re:
How many users ( including myself in the past ) got confused about machine.config vs. every
framework has a machine.config for the entire machine?
heh, heh...

So far you're the only one I've encountered...but don't let that stop you.

:-)

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message news:%2****************@TK2MSFTNGP04.phx.gbl... Juan,

The name framework.config - or equivalent has lots of implicit meta data in it.
How many users ( including myself in the past ) got confused about machine.config vs. every
framework has a machine.config for the entire machine?
At times that saves time when things are precisely named.

God Bless and thank you again.

SA
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:Ou**************@TK2MSFTNGP04.phx.gbl...
re:
Thanks for your thoughts.


Thanks for yours.

I still think that it's a semantic thing...and that machine.config is aptly named.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message news:uI**************@TK2MSFTNGP05.phx.gbl...
I disagree, We are not hung up here we need better names when possible.

Why companies correct, modify things then? Why not keep everything the same?
machine.config is deceiving.
framework.config would have been better. Over the years many companies including Microsoft have
named things in a way that can be better. Thanks to Microsoft things are changing for the best
because Microsoft is listening to people like us. Good example is local.live.com, New Hotmail
Beta, etc. etc. etc..

If we get stuck in the past we never improve the future. If we don't look for improvements we
never get better.

Thanks for your thoughts.

SA
you are right machine.config is not only for web.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
re:
> Microsoft named "machine.config" incorrectly. Microsoft should have called it
> "framework.config"

Let's not get hung up on semantics here.

It *is* machine.config...for the framework version
installed in the directory where that machine.config is found.

i.e., that "machine.config" has machine-wide scope for that framework version.

Machine.config is aptly named.

It's OK to have more machine.config files in other framework installation directories.
There's no difference in naming the file "machine.config" or "framework.config".

Something else to keep in mind, in regard to the OP's question, is that some of the
configuration
parameters in machine.config refer to desktop and console apps, and don't necessarily refer to
*web* apps...so a "machine.config" file can have other purposes than configuring web apps.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"MSDN" <sq**********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP02.phx.gbl...
> Big misconception here.
>
> read this carefully.
> Microsoft named "machine.config" incorrectly. Microsoft should have called it
> "framework.config"
> machine.config is not for the entire machine but for the entire machine that is using a
> specific framework
> Because you can have Framework 1.0, 1.1, 2.0 and xx.x all at the same time on one machine
> then you can have multiple machine.config files. One for each framework.
>
> This is a trick question on an interview.
>
> Also machine.config "framework.config" has allot of configurations that are common and then
> you can specialize your configurations in your web.config for each web application you have on
> your server.
>
> SA
>
>
> "TARUN" <ta*********@gmail.com> wrote in message
> news:11**********************@y43g2000cwc.googlegr oups.com...
>> Hello All
>>
>> I need to ask about the configuration file in .NET,
>> There are Two config File
>> 1. Web Config
>> 2. Machine config
>> I understand the the usage of Web config , but not able to understand
>> the usage of Machine config.
>> I read in the article that you can also write your database connection
>> string in Machine Config
>> if this is true then why the people using web config , we can write the
>> whole configurartion
>> setting in machine.
>>
>> Can any explain me why .net frame work requires two configuration file
>> if we write the same content (config setting) in both the files ????
>>
>>
>> With regards
>> Tarun Sinha
>>
>
>



May 10 '06 #11
Thank alot for explaining me the concept so well.Now I got it

Tarun Sinha

May 11 '06 #12

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

Similar topics

1
by: Chris | last post by:
I have seen the posts on various places on the internet about .NET framework mismatch issues and I don't think that is my problem. ; ) When I execute the following C++.NET code: String...
0
by: some guy with a computer | last post by:
I can not get a custom httpHandler to fire using machine.config and an assembly in the GAC. It will not work if I move the assembly to the GAC, even though I have it referenced correctly and add...
0
by: Roy Chastain | last post by:
I have a simple page or two and a simple global.asax file that loads some configuration from the web.config file. I developed this on a Windows XP box with framework version 1.1 installed. I run...
6
by: Mikey_Doc | last post by:
Hi We are running cms 2002, Framework 1.0 with Visual studio 2002. We have just upgraded to Framework 1.1 and visual studio 2003. All of our database connection strings are stored within the...
2
by: kramer.newsreader | last post by:
I am develoing a C# web application on a remote server. I have publish access to this server, but not permission to change configuration setting. When I try to load my page, I get the following...
2
by: Max Metral | last post by:
I'm trying to set the default behavior of customErrors in the machine.config. The documentation seems to suggest this should work, but it doesn't seem to work for me. On my development machine, I...
2
by: Ian | last post by:
Hi, I am trying to use machine.config to store database settings for a connection wrapper class I am using as part of the data layer of an n-tier system. Have added the following section to...
2
by: rKrishna2k6 | last post by:
We used to run our application on framework 1.1 and upgraded to 3.5 recently(I understood 2.0 and 3.5 are same except for the few add In s) Our Prod environment is on Win 2003 & IIS 6.0 and...
5
by: =?Utf-8?B?SmVycnkgQw==?= | last post by:
I have a app that uses several membership/role providers. I can list these Providers with the code: Dim rootWebConfig1 As Configuration rootWebConfig1 =...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.