Questions tagged [configuration]

Configuration is the process of specifying the settings used for a system or application

Configuration is used to customize the behavior of a program. It is commonly done using static configuration files that can be composed in any common text editor, but some applications provide tools (sometimes even with graphical interfaces) to create, modify, and verify the syntax of their configuration files.

Some programs only read their configuration files at startup. Others periodically check the configuration files for changes. Users can instruct some programs to re-read the configuration files and apply the changes to the current process, or indeed to read arbitrary files as a configuration file.

18012 questions
9
votes
2 answers

Setting up a cross-platform C++ project in Eclipse with cross-platform libraries

I am working on a cross-platform C++ project with 8 other people which uses the following libraries: OpenCV Library Boost C++ Library The project is inteded to be cross-platform so all users have agreed not to use platform-specific code, and, to…
eold
  • 5,972
  • 11
  • 56
  • 75
9
votes
4 answers

Windows service, can't access app.config from within my Installer's constructor

I want to store the username/password information of my windows service 'logon as' user in the app.config. So in my Installer, I am trying to grab the username/password from app.config and set the property but I am getting an error when trying to…
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
9
votes
4 answers

Entity Framework - redundant connection string

I'm using Entity Framework 4 in my project. The Framework has created its own connection string, so my web.config connectionStrings section file looks following:
jwaliszko
  • 16,942
  • 22
  • 92
  • 158
9
votes
2 answers

ASP.NET Core RC2 Configure Custom AppSettings

Say I put the settings below in appsettings.json. "MySettings": { "SmtpHost": "smtp.mydomain.com"", "WebService": "http://localhost:1337" } And I have the class below to hold those settings. public class MySettings { public string…
Clint B
  • 4,610
  • 2
  • 18
  • 22
9
votes
3 answers

DispatcherServlet and ContextLoaderListener in Spring

What is the difference between DispatcherServlet and ContextLoaderListener in Spring framework? Do we need to configure both of them in web.xml when we are using spring framework?
user222
  • 587
  • 3
  • 10
  • 31
9
votes
2 answers

Where do Spring bean configuration files go in a Maven WAR module?

I've looked at a bunch of sample projects and I can't seem to tease out a common best practice. I've seen Spring bean config files sometimes go in the src/main/webapp/WEB-INF directory. I've seen this in conjunction with with a Servlet definition…
Dave
  • 21,524
  • 28
  • 141
  • 221
9
votes
3 answers

rstudio How to enable font ligatures in RStudio?

I looked at Fira Code and I wanted to try it out with one of the listed supported editors. So I launched RStudio (Version 0.99.491 on a Win box) and set the font to Fira Code but ... nothing. So how to enable font ligatures in RStudio? EDIT: The…
green diod
  • 1,399
  • 3
  • 14
  • 29
9
votes
4 answers

Null argument error when updating Maven project

I'm trying to update my multimodule Maven project by right clicking the project in "Project Explorer" and selecting "Maven" -> "Update". Then I get the messeage Could not update project NAME configuration: null argument The other projects update…
thomasso
  • 280
  • 1
  • 5
  • 12
9
votes
5 answers

How do I set up Visual Studio 2008 to program in Perl?

My company gave me VS2008 for web development in C#/ASP.NET. I do a lot of Perl programming too and I'd like to start using VS for that so I can have a consistent work environment... but am having real trouble figuring out how to do so. VS has a…
Sukotto
  • 2,472
  • 6
  • 26
  • 31
9
votes
1 answer

WildFly 9.0.1 WFLYCTL0158 Handler "CONSOLE" is not found

Suddenly (after working fine for some time), WildFly 9.0.1 (and also 9.0.2) seem to have somehow lost the CONSOLE handler for logging. When trying to debug an application from NetBeans 8.0.2, the Console window shows: ERROR [stderr] (default…
mickey
  • 99
  • 1
  • 6
9
votes
3 answers

How to turn of "Fix Name To ..." hint in NetBeans?

I just installed NetBeans 8.10 on Windows 10 (64-bit). Everything works fine, but I don't know, how to turn off hint in PHP files about renaming global functions. I search in Tools > Options > Editor > Hints, but found nothing relevant...
Matěj Pokorný
  • 16,977
  • 5
  • 39
  • 48
9
votes
4 answers

Apply an App.config to my DLL assembly?

I'm writing a class library as an abstraction to use for logging in any application, service, etc. that I write. I'm making it decently robust by making it very configurable to suit my needs for most application/service logging scenarios that I come…
Jeff LaFay
  • 12,882
  • 13
  • 71
  • 101
9
votes
2 answers

Missing Tomcat8 conf directory

I've just installed Tomcat8 version 8.0.24-1 from Debian 8 repository by aptitude install tomcat8. I tried to play around with Tomcat, starting and stopping it. When I tried to shut it down by running ./bin/shutdown.sh, I noticed that shutdown…
patryk.beza
  • 4,876
  • 5
  • 37
  • 56
9
votes
3 answers

Wireless accessory configuration in iOS: EAWiFiUnconfiguredAccessoryBrowser will detect unconfigured accessories only once

I am using EAWiFiUnconfiguredAccessoryBrowser to detect EAWiFiUnconfiguredAccessory. The code to start the accessory search it's the following: - (void)viewDidLoad { [super viewDidLoad]; if (_accessories == nil) { _accessories =…
mm24
  • 9,280
  • 12
  • 75
  • 170
9
votes
3 answers

Username setup in TortoiseHG

I'm trying to set up a local repository with TortoiseHG. It's not linked to any remote repository; I just want to be able to manage changes on my own box. Creating the repository went fine, but when I go to commit, I get an error: Commit: Invalid…
Mason Wheeler
  • 82,511
  • 50
  • 270
  • 477