Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

67
votes
7answers
36k views

Best practice to save application settings in a Windows application

What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by the user, by using the options form I ...
50
votes
17answers
2k views

At what point does a config file become a programming language?

I have been mulling over config files and their relationship to code for a while now and depending on the day and direction of the wind my opinions seem to change. More and more though I keep coming ...
27
votes
9answers
19k views

WCF Configuration without a config file

Does anyone know of a good example of how to expose a WCF service programatically without the use of a configuration file? I know the service object model is much richer now with WCF, so I know it's ...
23
votes
12answers
4k views

Registry vs. INI file for storing user configurable application settings

I'm a new Windows programmer and I'm not sure where I should store user configurable application settings. I understand the need to provide a user friendly means for the user to change application ...
18
votes
14answers
2k views

Application configuration files

OK, so I don't want to start a holy-war here, but we're in the process of trying to consolidate the way we handle our application configuration files and we're struggling to make a descision on the ...
15
votes
3answers
27k views

How to programatically modify WCF app.config endpoint address setting?

I'd like to programatically modify my app.config file to set which service file endpoint should be used. What is the best way to do this at runtime? For reference: <endpoint ...
14
votes
8answers
928 views

How to version control config files pragmatically?

Suppose we have a config file with sensitive passwords. I'd like to version control the whole project, including the config file as well, but I don't want to share my passwords. That could be good, if ...
14
votes
10answers
2k views

PHP - Application config file stored as - ini,php,sql,cached,php class,JSON,php array?

I am trying to decide on the best way to store my applications configuration settings. There are so many options. The majority of applications I have seen have used a simple require and a PHP file ...
13
votes
2answers
2k views

How to store Node.js deployment settings/configuration files?

I have been working on a few Node apps, and I've been looking for a good pattern of storing deployment-related settings. In the Django world (where I come from), the common practise would be to have a ...
13
votes
17answers
2k views

Keeping dot files synched across machines?

Like most *nix people, I tend to play with my tools and get them configured just the way that I like them. This was all well and good until recently. As I do more and more work, I tend to log onto ...
12
votes
6answers
5k views

Installing a configuration profile on iPhone - programmatically

I would like to ship a configuration profile with my iPhone application, and install it if needed. Mind you, we're talking about a configuration profile, not a provisioning profile. First off, such ...
12
votes
3answers
3k views

How do you prevent the IIS default site web.config file being inherited by virtual directories?

I have the following code in a web.config file of the default IIS site. <httpModules> <add type="MDL.BexWebControls.Charts.ChartStreamHandler,Charts" name="ChartStreamHandler"/> ...
12
votes
6answers
2k views

Programmatically encrypting a config-file in .NET

Could somebody please do a rundown of how to programmatically encrypt a config-file in .NET, preferably in C#. What I would like to do is do some kind of check on an application's startup to see if a ...
11
votes
7answers
822 views

Mercurial: How to ignore changes to a tracked file

I have a file with database settings in my project which I have set to some defaults. The file is tracked by mercurial and checked in. Since this file will be edited with different values various ...
11
votes
9answers
1k views

Best Config File Format

I'm starting a new multi-language project completely without cruft. I have to choose a format for config files. These will be: Written by humans (developers, not end users) Read by machines ...
11
votes
5answers
2k views

How do I globally configure RSpec to keep the '--color' and '--format specdoc' options turned on

How do I set global configuration for RSpec in Ubuntu. Specifically so, --color and --format specdoc stay turned on, across all my projects (ie every time I run rspec anywhere).
11
votes
6answers
10k views

How to create an .INI file to store some settings in Java?

I want to create an ini file to store some settings for my application. Is it a good idea to find where the jar file is located and create an ini file there? If yes, then how can I find the location ...
10
votes
6answers
2k views

Use ini file in c on Linux

Is there any standard way of reading a kind of configuration like ini files for linux using c? I am working on a Linux based hand held and writing code in c. Otherwise, I shall like to know about any ...
10
votes
4answers
2k views

What is the best way to store configuration variables in PHP?

I have considered the following $mysqlPass = 'password'; // doesn't seem right $config['mysql_pass'] = 'password'; // seems slightly better define('MYSQL_PASSWORD', 'password'); // seems dangerous ...
10
votes
4answers
3k views

Initializing user.config or app.exe.config during install

I am developing a .NET WinForms application which relies on user.config to store various useful settings such as intranet web service URLs. We would like to make it possible to import custom initial ...
9
votes
5answers
4k views

How to create a custom yaml config file in Symfony

What I want to do is quite simple: store data in a custom config file that I want to read later on. I created my file something.yml that I put in the global config directory. It looks like that: ...
9
votes
6answers
3k views

Get the App.Config of another Exe

I have an exe with an App.Config file. Now I want to create a wrapper dll around the exe in order to consume some of the functionalities. The question is how can I access the app.config property in ...
8
votes
3answers
5k views

How to implement a ConfigurationSection with a ConfigurationElementCollection

I am trying to implement a custom configuration section in a project and I keep running up against exceptions that I do not understand. I am hoping someone can fill in the blanks here. I have ...
8
votes
8answers
472 views

Separating configuration data and script logic in Perl scripts

I find the following anti-pattern repeated in my Perl scripts: the script contains some machine/setup specific settings which I store in-line as constants in the script whereas the rest of the script ...
8
votes
4answers
596 views

python single configuration file

I am developing a project that requires a single configuration file whose data is used by multiple modules. My question is: what is the common approach to that? should i read the configuration file ...
8
votes
2answers
518 views

Can ConfigurationManager retain XML comments on Save()?

I've written a small utility that allows me to change a simple AppSetting for another application's App.config file, and then save the changes: //save a backup copy first. var cfg = ...
8
votes
7answers
1k views

What is the best way to serialize Delphi application configuration?

I will answer this question myself, but feel free to provide your answers if you are faster than me or if you don't like my solution. I just came up with this idea and would like to have some opinions ...
7
votes
2answers
305 views

Tools for previewing configuration file transformations

Are there any tools or Visual Studio 2010 extensions which allow me to view the output of a configuration file transformation short of having to publish the entire project? Is the process which ...
7
votes
2answers
282 views

Reduce number of config files to as few as possible

For most of my applications I use iBatis.Net for database access/modeling and log4Net for logging. In doing this, I need a number of *.config files for each project. For example, for a simple ...
7
votes
2answers
2k views

Which design patterns can be applied to the configuration settings problem?

In large and complex software products managing configurable settings becomes a major pain. Two approaches I've seen to the problem are: have each component in the system load its own configuration ...
7
votes
1answer
5k views

How to enable configSource attribute for Custom Configuration Section in .NET?

following the wealth of information found here how can we get an external .config to work? I've tried the same setup I would use for an external appSettings file, but it is unable to find the file for ...
7
votes
2answers
39k views

Java - encrypt / decrypt user name and password from a configuration file

We are busy developing a Java web service for a client. There are two possible choices: Store the encrypted user name / password on the web service client. Read from a config. file on the client ...
7
votes
3answers
2k views

How can I make shift+spacebar page up in Vim?

I have an entry in my .vimrc which makes it page down the viewport when I hit the spacebar. It looks like this: map <Space> <PageDown> I want to create another key mapping which pages ...
7
votes
2answers
12k views

WCF service configuration file question regarding <baseAddresses>

From what I've seen the tag is ignored when hosting a WCF service in IIS. I understand that when self-hosting this is required but is this harmful or even used when operating under IIS? ex. ...
6
votes
1answer
137 views

Calling a Python function from a shell script

I am trying to figure out how to call a Python function from a shell script. I have a Python file with multiple functions and I need to use the values returned by them in my shell script. Is there a ...
6
votes
1answer
285 views

Display a .exe.config file in a datagridview and manipulate the settings

I'm working on a GUI that is able to manipulate xml files through a datagridview and have it saved to a destination of the user's choice. This program also has a .exe.config file in which I would also ...
6
votes
5answers
382 views

Parse config file and command-line arguments, to get a single collection of options

Python's standard library has modules for configuration file parsing (configparser) and command-line argument parsing (optparse, argparse). I want to write a program that does both, but also: Has a ...
6
votes
1answer
532 views

How to parse config file with erlang?

i am developing one program with erlang, which need to read config file when starting, then load the config data to database. originally, using Ruby or C i can load YAML file or conf file. I want to ...
6
votes
3answers
605 views

How can I make a .NET class library read its own configuration file?

I have a .NET class library that provides a set of helper functions that are used by several Web Services. This class library must store a single setting, specifically, a connection string, which need ...
6
votes
4answers
410 views

Can I add conditions in app.config file?

Is it possible to add conditions in app.config file? I do below in the C# code and I want to do something similar in my app.config file too. #if (Debug) ....... #else ..... #endif
6
votes
3answers
233 views

Is there a typical config or property file format and library in Haskell?

I need a set of key-value pairs for configuration read in from a file. I tried using show on a Data.Map and it doesn't look at all like what I want. It seems this is something many others might have ...
6
votes
2answers
268 views

What generates the In/Out CellLabels in Mathematica and how can I add automatic Timing to them?

When Mathematica evaluates a cell, it gives the Input cell and Output cell the CellLabels In[$Line]:= and Out[$Line]= where $Line is a counter that gets incremented on each evaluated input. If you ...
6
votes
3answers
2k views

Updating AppSettings via ASP.NET MVC Controller

I'm writing a basic little forums web app (for fun and to sharpen the ole' saw), and I'm having a bit of trouble with AppSettings. My plan is to have these settings in their own file ...
6
votes
8answers
1k views

How do you handle command line options and config files?

What packages do you use to handle command line options, settings and config files? I'm looking for something that reads user-defined options from the command line and/or from config files. The ...
6
votes
6answers
515 views

What's the best practice for handling system-specific information under version control?

I'm new to version control, so I apologize if there is a well-known solution to this. For this problem in particular, I'm using git, but I'm curious about how to deal with this for all version control ...
6
votes
2answers
3k views

Java equivalent to app.config?

Is there a Java equivalent to .NET's App.Config? If not is there a standard way to keep you application settings, so that they can be changed after an app has been distributed?
6
votes
4answers
2k views

PowerShell App.Config

Has anyone worked out how to get PowerShell to use app.config files? I have a couple of .NET DLL's I'd like to use in one of my scripts but they expect their own config sections to be present in ...
5
votes
4answers
154 views

Managing web.config files

I have 3 environments: Dev, QA, Prod on .NET 4. Each has a unique web.config file. We have been having problems managing all three versions. Its easy to overlook something critical when manually ...
5
votes
4answers
2k views

Read custom configuration file in C# (Framework 4.0)

I am developing an application in C# under Framework 4.0. In my application I would like to create separate configuration file that is not the app.config file. The configuration file contains custom ...
5
votes
8answers
934 views

Reading Java Properties file without escaping values

My application needs to use a .properties file for configuration. In the properties files, users are allow to specify paths. Problem Properties files need values to be escaped, eg dir = c:\\mydir ...

1 2 3 4 5 12