Use XML To Store Configuration Settings In C#.Net Application?

Mar 11, 2011

My question relates to the performance implications of reading application configuration data from an XML file.I am building an application that lists information from a database and needs to know how to display the lists, depending on the types of data returned.This is difficult to explain, but basically I would like to have an XML config file that lists the types and describes how to display them. This will allow me to change the display methods without re-compiling the application.

My question is really around performance. Given that my application will need to use this data many times during each page load...Should I be reading directly from the XML file and parse it each time I need it?
Or should I cache the XML object and parse it each time I need it?Or should I parse the XML once, generate some sort of object and cache that object?My guess is option 3, but I'm basically fishing for best practice around this.

View 1 Replies


Similar Messages:

C# - Best Way To Store Configuration Settings Outside Of Web.config?

Jun 6, 2010

I'm starting to consider creating a class library that I want to make generic so others can use it. While planning it out, I came to thinking about the various configuration settings that I would need. Since the idea is to make it open/shared, I wanted to make things as easy on the end user as possible. What's the best way to setup configuration settings without making use of web.config/app.config?

View 3 Replies

C# - Where To Store The Global Settings To Allow The Application To Access Them Frequently

Mar 7, 2011

I have some global settings in my application that is going to be handled by the administrator and I store them in the database.

Settings like: board on/off, max items/page on different UserControls, language, hide/show modules.

What technique should I follow to read the values in the database and display the page or the application according to it .. Of course I could do it the easy way and fetch the required settings for each page in the Page_Load event handler but I think that will be a lot of database connection!

View 1 Replies

Configuration :: Application Directory Should Store Javascript Files?

Apr 3, 2010

Where is the best place to store a javascript file in my website?

Should they be stored in the App_Code folder allong with C# files or should I create a dedicated folder in the root of the website? Or are there any other options?

View 2 Replies

Store Config Settings For A .NET DLL (not EXE Or Web)?

Jan 19, 2011

I have a .NET 4 class library project, which is used by multiple web projects. In this class library I need to get a DB connection string and it needs to be the same for all the web projects. Currently I've got it as a setting in each web.config file, but this is not ideal. Is there any way I can have that configuration stored with the DLL, but still allow it to be modified at runtime (ie. hardcoding the connection string is out)?

App.config seems to be generally ignored for a DLL, even though it does get renamed to assemblyname.dll.config and copied to the bin directory for the web. I tried making it an "application setting" (ie. using the auto-generated class derived from System.Configuration.ApplicationSettingsBase) and this appeared to work, but changing the value in the DLL .config file at runtime had no effect, so I suspect it's really just using the hardcoded default value of the setting.

View 3 Replies

C# - Store & Return Settings For A Webpage?

Sep 13, 2010

So I am using C# ASP.NET 3.5 and I would like to add a feature to my site to turn on and off a sort of debug mode for testing purposes.

Is there a best way to have a file or class that stores or returns simply if myDebug is on or off. It has to be accessed fast since it will be used a lot on multiple pages and it should be easy to set using the website itself.

My first thought is just a class with get/set which is stored on every page... perhaps the master page?

View 2 Replies

Security :: Use Membership Store For User Settings With Windows Authentication

Sep 1, 2010

I am evaluating ASP.NET Membership for an intranet Silverlight app. I want users to be automatically authenticated for my application with their windows logon. Thus I configured Windows Authentication. I would like to store user settings like email-address in using the SqlMembershipProvider and not AD. It seems that storing user settings using the SqlMembershipProvider is not supported with Windows Authentication. Is this really so (using .NET 4)?

If so: What is the rationale behind this? IMHO authentication, user settings and authorization are distinct aspects. User settings could easily be stored (identified by user name) using the SqlMembershipProvider with authentication and password management being supplied by Windows. What is the recommended solution for my scenario?

View 2 Replies

Configuration :: How To Read Configuration Settings Of Web.config Using Javascript

Apr 30, 2010

Web.config is the main settings and configuration file for an ASP.NET web application. The file is an XML document that defines configuration information regarding the web application. The web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application specific items such as database connection strings

Example 1:

<!-- This is an example Web.config file -->

[Code]....

In this article, we will see how to read the configuration settings in the web.config using 'JavaScript'.

Step 1: Create a new ASP.NET website. Add a button control to the Default.aspx.

Step 2: Right click the project > Add New Item > Web Configuration File

Add the following sample entry to the appSettings section in the web.config between the <configuration> tag as shown in the example 1:

<add key="var1" value="SomeValue"/>

Step 3: To read these entries using JavaScript, add the following script in the <head> tag of your Default.aspx page as shown below:

<head runat="server">
<title></title>
<script type="text/javascript">
function ReadConfigSettings()
{
var v1 = '<%=ConfigurationManager.AppSettings["var1"].ToString() %>'
alert(v1);
}
</script>
</head>
Step 4: Call this function on a button click and display the values of the configuration settings

<input type="button" value="Get" onclick="ReadConfigSettings();" />
That's it. Run the application and click the button. The value of the key in the appSettings will be displayed in the alert window. I hope you liked this short article.

View 7 Replies

Configuration :: How To Change Connection Settings

Feb 8, 2011

Right now, when I am copying the website to host server, I am changing the connection string in webconfig file and at each location of a sqldatasource or a query .. thats like more than 30 places where I am doing this.

When I am done copying the website, I have to change all the connection strings back to dev server for me to keep working on the dev copy....

View 1 Replies

C# - Email Configuration Settings Not Being Fetched?

Nov 15, 2010

I have application that fetches email configuration settings such as host (SMTP Server name), username (SMTP Username) and Password from App.Config File as shown below

<system.net>
<mailSettings>
<smtp from="name@example.com"><network host="smtp.gmail.com" userName="test123@gmail.com" port="25" password="PassworD"/>
</smtp>
</mailSettings>
</system.net>

Now i wish to configure the settings that i have set in database and NOT from App.Config File. From database the credentials are not available in SMTPClient's properties .FYI, they are saved in database as well as the values are also correct.

View 2 Replies

NUnit - Configuration Settings Cannot Be Found

Jan 15, 2010

I've written an NUnit test project against an ASP.Net project. The code being tested cannot find the configuration values (in Web.config) when invoked from my test project. What is the right way to provide these configuration settings so my tests will run?

View 2 Replies

Configuration :: Settings For Web.Config File?

Sep 22, 2010

I am designing a web application for Leave Application of our faculties. There is a form in my website which represent the existing paper-back leave application form. Users(faculties) have to fill-up this web form and after validation an email will be send to the email address of our principal/hod. I hope that email address(s) will be provided to our group members. Now I want to know that what will be the required configuration of the web.config file? I found this blog ScottGu's Blog. Here the given configuration is:

[Code]....

But I think this is not acceptable for my project as the smtp from="test@foo.com", userName, password are unknown to me. So what should I do. Am I able to understand my requirement to you?

View 4 Replies

Configuration :: Changing Mail Settings Before Deployment?

Apr 5, 2010

Sending eMail from my site is working fine in my local computer.

Before deploying the site to a hosting server, how should I change web.config mailsettings which is :

[code]....

View 4 Replies

Storing Configuration Settings In Web.config Or Database?

Feb 15, 2010

What it best location to store various configuration settings of a web site modules. Creating class (that inherit ConfigurationSection) that map the settings in web.config file?Or creating some DAL and BLL clases that work with database?

View 5 Replies

Configuration :: How To Modify Project Settings At Run Time

Aug 24, 2010

I have several settings in my project area (stored in web.config). However, the scope is not editable and is permanently set to "Application", which means I can't edit them at run time. I would really like to be able to edit these from the web interface. I know that doing so would restart the application (since the web.config was modified), but I'm okay with that, once the settings are written.

Is there any way to programmatically modify the settings in the <applicationSettings><PROJECT.Properties.Settings> area of the web.config?

View 9 Replies

Configuration :: Add Change Settings Form In Website?

Aug 10, 2010

I wish to keep the site settings like ProductsPerpage, SiteName, MaximumFileUploads etc in web.config file I wish to add a "Change Settings" form in the web site in order to change settings. Is it a standard method to access and edit the system.config file programmatically for changing site settings? Else what should be the good approach I should follow?

View 3 Replies

Configuration :: Site Settings File Vs. Web Config?

Nov 12, 2010

I've been thinking about this for a couple days but still would like some feedback on the best way to go about this:

I have multiple sites (domains) that will be running the same code. However, there are a couple settings I have in the appsettings web.config file which are relative to each site. (ie: defaultSiteTitle, emailFromAddress, etc).

I would like to deploy this application in only one location (folder) and point the domains in IIS to that one directory.

To do this, I believe I cannot use the web.config file to hold these settings...

So, I decided to make a SiteSettings.xml file and load the site settings in there:

<sites>
<oSite domain="abc.com" defaultSiteTitle="This is Site ABC" emailFromAddress="info@abc.com" />
<oSite domain="xyz.com" defaultSiteTitle="This is Site XYZ" emailFromAddress="info@xyz.com" />
</sites>

So when I need to access the site settings I just call a function in my datalayer that reads this xml file and via the httpRequest I pass it it determines which site settings to use.

Okay, that works when I call it from a page where I have the httpRequest...

Howver, now when I'm into some business layer functions say sendEmail and I need to find the emailFromAddress from the SiteSettings.xml file, I don't have the httpRequest. I know I could probably hack something together and pass it someway...

But I'm trying to figure out the best way to do this...

I don't really want to store it into session.

Is it possible to tell IIS what web.config file to look at, if I had multiple web.config files? (I don't think this is possible).

View 2 Replies

Configuration :: Medium Trust Settings For XmlResolver?

Mar 29, 2011

When my web application is running under Medium trust, I get an error when executing the method:

View 2 Replies

C# - Web Application Azure Settings?

Dec 6, 2010

We're currently refactoring our ASP.NET 4.0 Web Application to run on both plain old IIS and Azure. For the Settings (in the Properties namespace), I'd like to implement the State Pattern with an AzureSettingsState and a StandaloneSettingsState, which both provide settings getter methods.Now could anybody help me figuring out how ASP.NET deserializes the non-String values (e.g. TimeSpan or StringCollection), so that I can deserialize them on my own in the context class? All settings seem to be strings there.

public abstract class ConfigStateBase
{
public abstract string GetSettingValue(string setting);
}

View 1 Replies

Keep Loosing Application Settings?

Apr 15, 2010

I'm having a weird problem with one of my .net windows applications. I store a number of settings in the application settings (User Scope) but from time to time the settings just seem to dissapear when it's run on the server.

View 3 Replies

How To Retrieve Configuration Settings From The Web.config File Programmatically

Jun 17, 2010

I have this portion of my web.config file;

[Code]....

I need to be able to retrieve the value of "from" in my application. How do I read this value into my code?

View 3 Replies

Configuration :: How To Change The CustomErrors Mode Settings In Memory

Dec 18, 2010

By defauly in my web.config I have set the , in runtime I just want to change the Mode = "Off" in memory. I do not want to save the changes to web.config.

Basically we need to see the description of the runtime error, when required.

View 2 Replies

Configuration :: Managing Local / Remote Web.config Settings?

Apr 6, 2010

I'm just wondering what the best practice is for managing web.config connection strings and SMTP settings when working locally in VS2008 and deploying to a remote server?

View 5 Replies

C# - Migrating Web Application Settings As Configured Through IIS?

Jul 15, 2010

We have a few settings in our web application that can be user configured. As IIS exposes helpers for configuring "Connection Strings" and "Application Settings" we decided to take use this method of configuration.

Unfortunately this works by editing the Web.config file deployed in the web application. This means that a simple upgrade process of copying over the files from a newer web application release resets all configuration settings to the default.

Possible options:

When upgrading the webapp, backup the Web.config and restore it afterwards. This is not elegant and if the latest webapp defines new default-valued properties in the Web.config then this will break Write some admin-only configuration pages on the site and store the values in the DB. This puts the control back in our hands, but it will take work to write this and obviously has bootstrapping problems with connection strings.

View 1 Replies

C# - Configuration Settings Those Cannot Be Overridden In Lower Level Web.config Files?

Feb 16, 2011

This is a general question and is not about any particular issue that I am facing right now.As configuration settings in the child level can override the ones in parent level,errors can occur when you have 2 web.config files one redefining configuration settings that you cannot override such as authentication or session state.Issue happens when you have authentication / session state set on the lower level web.config and also in higher level web.config. Is there any other configuration settings like these ?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved