Application configuration files contain settings specific to an application.

learn more… | top users | synonyms (2)

1
vote
0answers
16 views

Could not find default endpoint element that references contract error

Any ideas? I know this is asked loads because I've checked a load of links/sites such as this SO question: Could not find default endpoint element The problem is I have done all the copying of the ...
0
votes
0answers
43 views

Access both web.config and app.config from a single class

I need to read data from both app.config and web.config. My class will have read/write/update methods wrapped in a dll which will be used both by an application (exe) and by a web application. I need ...
0
votes
1answer
16 views

Use Expression in app.config

I have a user setting that I have added on the Settings page under the project's Properties: What I would like to do is set the default value to an expression pointing to a sub-directory of the ...
0
votes
0answers
15 views

What's the difference between configuration/assemblyBinding and the configuration/runtime/assemblyBinding elements

In .NET framework configuration, there are 2 assemblyBinding elements: one can be directly under the configuration element, the other is under configuration/runtime. The documentation for the second ...
2
votes
0answers
40 views

Need some clarification about app.config and user.config

So I have been poking around both here on SO and google for the last few days for information about app.config. I am writing a program that will need to generate SQL scripts using values entered by a ...
0
votes
1answer
47 views

reading and writing app.config in C#

I understand there are lot of references to app.config in this forum, but I am posting this question here as I think my question is very direct. My app.config looks like this... <?xml ...
0
votes
0answers
6 views

Linking configs in multiple .Net projects

I´m trying to link config files in a solution with no success, I have multiple projects, an MVC and a lot of Class Libraries. Each Class Library has a app.config with key/value settings. I want to ...
1
vote
1answer
22 views

Windows service properties.settings.default location?

I have built a Windows service app that's installed and running. During debugging while the service is running, I have found that when I import the properties.settings.default and modify it, it is not ...
0
votes
1answer
11 views

app,config not overwritten or changes not picked up with custom app.config files according to Build cofiguration

I am currently creating a solution that must both work with localdb and sqlservercompact 4.0, using EntityFramework Code First. I created therefor extra builconfigurations: LocalDb and SQLCE. ...
0
votes
2answers
34 views

VB.Net Should I Store Database Connection String with Application or User Scope?

All of the examples I've seen set the connection string in app.config at the application level, but application settings are read-only. However, I want to allow the user to update the connection ...
0
votes
1answer
45 views

C# WPF app won't compile when I try to use newly added app settings

A WPF app I've written will no longer compile when I try to use a recently added app setting in my code behind. I can see the setting in the settings designer and in the app config, and will compile ...
0
votes
1answer
39 views

Reading App.config to get the value based on key in c# library project

i am trying to read the setting from the app.config , it looks like below <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="Chrome" ...
1
vote
2answers
42 views

ConfigurationManager.AppSettings use another config file

i have about 10 methods in my class in every method i use ConfigurationManager.AppSettings to get value form App.config file like _applicationPort = ...
0
votes
0answers
14 views

How to set the connectionManagement maxconnection programatically?

How do I set the maxconnection value programatically? This is the entry in my app.config. <system.net> <connectionManagement> <add address = "*" maxconnection = "100" /> ...
1
vote
2answers
30 views

What's the difference between using useLegacyV2RuntimeActivationPolicy and multiple supportedRuntimes

What is the difference between the three following scenarios (in an app.config files of an exe)? <startup> <supportedRuntime version="v4.0" /> <supportedRuntime version="v2.0" ...
-2
votes
0answers
17 views

To automate configuration of a COM+ application to run as a service [closed]

Want to automate this process using powershell script? To configure a COM+ application to run as a service In the console tree of the Component Services administrative tool, locate the COM+ server ...
7
votes
4answers
134 views

Rails application config access slow - why?

We always used to put our application config into the environment files. That's no good for production management, so now we load it through an initializer: # myinitializer.rb ApplicationConfig = ...
1
vote
1answer
28 views

Not Change app.config

I want to change Connection string at runtime in app.config The code I wrote is as follows: var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); ...
5
votes
2answers
290 views

“An error occurred creating the configuration section handler for” -

We're getting an odd error in our Test environment with a custom configuration section. This is for a Windows Service running on a Enterprise Server 2008 r2 64 bit with SQL Server 2008 in both dev ...
0
votes
0answers
16 views

X.509 Error after upgrading to VS2012

I am running a windows app using C#. When I had VS2010 before upgrading to VS2012, I was not getting the "X.509 certificate ..... chain building failed. The certificate that was used has a trust chain ...
0
votes
0answers
25 views

Strange behavior while creating custom configuration for a Windows forms application

I am creating a custom configuration section. App.config below. <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="imageConfig" ...
0
votes
1answer
39 views

Unable to read new keys from App.config in C#.NET Windows Application

my app.config file has 6 key-value pairs. I earlier had only three of them. I ran the application many a times before adding 3 more keys recently. But doing this, I always get "Null object ...
0
votes
1answer
48 views

App-config , custom section handler object returning as null

So I made a custom section handler to read information from the app-config file but when I try run it i get the following error: Object reference not set to an instance of an object. I have been ...
0
votes
0answers
9 views

Change Config.dll file inside bin directory

Good day, here is my question. Let's sat I have some config.dll file in my bin directory. When I open it and make some changes, I don't see any changes in my application. Btw, if I made changings in ...
0
votes
1answer
35 views

What would cause this, 'Could not find schema information for the element'

My application was working perfectly fine. I had made a modification to my webservice and I wanted to 'Update Service Reference' in my winforms application. When I clicked 'Update Service ...
-2
votes
2answers
71 views

Connecting c# application form to text file using app.config file [closed]

I am connecting my c# application form with text file. But I dn't want it to be hard-coded. So far my code in the file is given below. I dn't want to display the file name and path file. I rather want ...
0
votes
1answer
62 views

Custom app.config WPF application

I'm trying to create a custom section in my app.config file, but when I run it, I get an error that I'm not sure how to fix. I've been reading up online on how to create these classes, but it appears ...
0
votes
1answer
31 views

How can I dynamically provide command line arguments during VS 2012 C# debug sessions?

I am busy with a console application, being a CLI to an API class that provides top level public methods for a data integration process. During development, it is necessary for me to frequently change ...
0
votes
0answers
38 views

ADO.NET app.config connectionstring, on different Server?

I am developing an ASP.NET application at the moment. The plan is, that database and business-logic should run on an own machine. The ASP app should run on a single machine then, which is only working ...
0
votes
1answer
48 views

app.config or TXT/INI for saving config options?

I'm working on a application where users should be define a output directory. After read a lot about app.config and also about ini (here says it's not recommended and .NET hasn't any class or ...
0
votes
1answer
31 views

Issue with custom configuration handler - The element <myElement> may only appear once in this section

So im writing a custom configuration handler to allow me to assign multiple values to a single key in the app-config file. What I have now works , but only for one element. The error I am getting is ...
0
votes
1answer
26 views

Problems with custom configuration section handler

So im completely new to using the app-config file , im trying to create a custom configuration handler so that I can read multiple values from the same key , I followed the documentation on the ...
0
votes
0answers
25 views

Managing Multiple configs VS single configs in a dot net solution

I have certain doubts with respect to managing Configuration in config files in a typical dotnet application. Here is the case that I present: The solution is a WPF based application and is ...
1
vote
2answers
116 views

Entity Framework Code First without app.config

I hope somebody is able to help me, because it seems I'm totally stuck. For upcoming projects in our company we'd like to use Entity Framework 5 with an code first approach. I played around a little ...
0
votes
3answers
62 views

Can't read keys from App.config

I want to read some values from my project's App.config file, but when I do this: var appsettings = System.Configuration.ConfigurationManager.AppSettings; I only get four entries: ...
2
votes
0answers
22 views

Is it possible to include hyperlink in app.config key value?

Is it possible to include hyperlink as a part of text in app.config key value pair (email body text as value)? I want to generate email body from app.config key value. For example: <add ...
0
votes
1answer
50 views

Wrong app.config loading

I have a simple C# console application that needs to pull a few values out of the app.config file. The problem is it seems to be opening a separate, hidden, config file that I can't find or figure ...
0
votes
4answers
43 views

How to specify path in .config file relative to the file?

An app I use interprets a .NET .config file. I added a line specifying the path to a certificate it needs <add key="Certificate" value="..\certificate.abc"/> However, I found the app only ...
0
votes
0answers
28 views

Trying to create a custom partial settings file

I'm trying to create a custom settings class to store some user-scoped settings. I did this few months ago and it worked just fine, but I can't remember all the details and don't have access to the ...
0
votes
1answer
37 views

why do you need to declare a connection string in the app.config file of a consuming application that has a .dll as the data access layer

I'm sure this goes all the way back to the very basics but I'm curious: I have a dll that handles entity framework connections to the database. ie my model is in this dll along with a static class to ...
0
votes
2answers
60 views

Centralize connection strings for multiple projects within the same solution

I currently have three projects in my solution that all have their own App.config file with the same exact connection string. Is there a way to consolidate the connections strings / app.config files ...
1
vote
3answers
106 views

Reading connection string from external config file

I have created a console application and a App.config file and Connections.config file. App.config file will connectionstring property source pointing to Connections.config. When I tried to read the ...
0
votes
3answers
61 views

How can I transform web.config values?

I am trying to make different config files for different cases (debug,release, etc.) and I would like to change some settings for different builds. <configuration> <applicationSettings> ...
0
votes
1answer
48 views

Consuming a .net 2.0 web-service from a DLL without app.config

General question consuming a .net 2.0 web-service without app.config Please excuse my bad english: What I already did: I wrote an test console application which connects with a preconfigured ...
0
votes
1answer
13 views

nameValueCollection inside an element of a configurationElementCollection

How can I use a nameValueCollection inside an element of a configurationElementCollection? Something like this: <connectionsSection> <vendors> <add name="nhonho" ...
0
votes
3answers
101 views

Not able to persist new changes in appsetting section in app.config WPF?

Below is the code i am using to update or change the values in appsetting in app.config Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); ...
0
votes
0answers
15 views

How to configure DbProviderFactories from code?

I don't want to configure my database during runtime in code. There is a solution in this question, but I don't like the side-effects of overthrowing the Western Civilization. Is there a better way to ...
0
votes
1answer
15 views

Where does PresentationTraceSources.Refresh look for the app.config file?

I am trying to better understand PresentationTraceSources. The docs for the Refresh() method say "Refreshes trace sources, by forcing the app.config file to be re-read." Where does it expect to find ...
0
votes
2answers
103 views

Accessing a app.config file property in another app.config file

I have a WCF class library which implements a Windows Service business logic.In app.config file i defined a property called "debug mode" for debugging purposes. Then i have created separate Windows ...
0
votes
1answer
13 views

Can i use a centralized external config file for c#?

I found an article on using external config files here. While I was able to extract my config settings, I was unable to put them in a central location. When i tried to do something like this: ...

1 2 3 4 5 29