Application configuration files contain settings specific to an application.
0
votes
1answer
11 views
Configuration system failed to initialize when trying to connect using c#
I am trying to connect from my app to SQL server and im getting the following error: "Configuration system failed to initialize".
this is my App.config file:
<?xml version="1.0" ...
0
votes
0answers
14 views
DataSource connection as attribute works, while it results in an error when defined in App.Config
Our testmethods connect to an Excel workbook through the DataSource attribute. It looks like:
[TestMethod, Priority(3)]
[DataSource("System.Data.OleDB",
...
0
votes
1answer
16 views
.NET Framework 3.5 SP1 application fails to run on .NET Framework 4.0 [closed]
I have Windows 7 machine with Visual Studio 2012 ultimate edition installed. I have installed MongoVUE application from below link. Per the link, .NET Framework: 2.0 SP1 / 3.0 SP1 / 3.5 SP1 is ...
0
votes
1answer
14 views
Unity section in .config file using Protected Configuration Provider
In my app config I'm using RSA Protected Configuration Provider, everything works fine when using it with connectionStrings section but NOT with unity section in app.config. Whenever I try to make ...
0
votes
1answer
37 views
Characters Escaping issue
I am working on WPF application and now I have part of my code that has to add content to my app.config file.
Simply said I have to add a Key-Value pair as a child of a particular element but when I ...
4
votes
1answer
58 views
Is it possible to serialize changes in your application configuration to your application's app.config file?
Is there a built-in mechanism for serializing changes to your app.config file using built-in functions available in .NET? For instance, if I have a custom property set in Executable.exe.config that ...
2
votes
0answers
51 views
Is it possible to set custom properties in an app.config file?
I know how to interact with properties built into the .NET runtime using an app.config file, however, I would like to be able to set custom properties using the app.config file and cannot find ...
1
vote
1answer
38 views
What does “SKU” (attribute) mean in C#?
Today I encountered with the line
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
in my App.config file which caused errors with framework when the sku attribute was ...
1
vote
3answers
43 views
How to change the content of my app.config after installation of the application
I am working on WPF application that soon has to be ready for installation but there is a functionallity that allows the user to make changes to the app.config file and I don't know how to do that ...
0
votes
1answer
23 views
TypeInitializationException when accessing App.Config connection string
I created a static utility class to simplify access to the db and am getting the following exception when i run my code "TypeInitializationException".
<connectionStrings>
<add ...
1
vote
3answers
38 views
Turning application's features on/off
I have several features in my .net application that I would like to be able to turn on/off. As I understand there several options available:
Config file
Registry
Custom xml file
I would like to ...
3
votes
1answer
42 views
Overriding the AppSettings
I have a code snippet like this in my App.config -
<appSettings file="..\..\..\master_AppSettings.config">
<add key="ApplicationDSN" value="XYZConnectionString" />
</appSettings>
...
0
votes
0answers
28 views
App.config problems (Schemas)
I've got this problem with my app.config file in my console application.
Here's my app.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
...
0
votes
1answer
18 views
How to record log info to flat file + Event Log
I have a 3rd-party app that logs (verbosely) to the users' Appdata folder. I'd like to augment that behavior to also record Errors to the EventLog. How can I accomplish this? Note that the app's ...
0
votes
1answer
12 views
Modify configProtectedData section in .config file
For the following:
<configProtectedData >
<providers>
<clear />
<add CertSubjectDistinguishedName="localhost" name="X509ProtectedConfigProvider" ...
0
votes
1answer
29 views
How to set Entity framework 4 CommandTimeout in connection string?
Is it possible to specify commandTimeout in connection string in app.config?
According to this SO question: Entity Framework with MySQL - Timeout Expired while Generating Model the following should ...
1
vote
1answer
47 views
Why does section order matter in the app.config
I recently added log4net to my application. What struck me as rather odd was that I had to have the <configSections> tag block ahead of the <startup> tag block. If I didn't I ended up ...
0
votes
2answers
45 views
App Config File not saving
I am using the below code lifted from MSDN, but its not updating my app.config file.
Am I missing something? Please help.
private void button1_Click(object sender, EventArgs e)
{
...
-5
votes
2answers
42 views
Read Config File in :NET [closed]
I want to read this Config File with c#
<Wo>
<Od name="rene" id="32442">
<Ider>
<Suc name="Oda"/>
<Fed name="Wor"/>
</Ider>
<Proc id="756545">
...
0
votes
1answer
42 views
Out of memory when sending large data collections
I have a product that works fine in most case but then I have one case where I get a lot of out of memory exceptions(on service).
The service is a WCF service hosted as a Windows Service. The service ...
0
votes
1answer
35 views
Error:Could not Load File or Assembly Entity Framework 4.4.0.0 on opening application?
I have created a setup project and installed on local machine. The application opens but connection to Database doesnt occurs it throws error as following screen shot. I am using Entity Framework 4.0 ...
0
votes
1answer
23 views
i have error use sample microsoft [closed]
I am using version 4 .net faramework
When using the following code in windows application error occurred
error:Could not load file or assembly 'protectedconfigurationproviderlib, ...
0
votes
1answer
24 views
Changing the settings value of dll without recompiling
I have created a plugin dll, which is being referred by third party application. My plugin refers to a webservice endpoint. When i deploy the plugin, i should be able to point to manually edit the end ...
0
votes
1answer
30 views
Dynamic Custom CodeIgniter Config File
I have created a custom configuration file for my custom CMS I am building using CodeIgniter. I want to have a "Configuration" page in the CMS that allows the user to save a contact email address and ...
1
vote
0answers
17 views
Providing spring configuration from code using CodeConfigurationContext?
Currently in my app.config I have created a separate section for spring dependency resolution like below and is working fine.
<ConfigurationSettings>
<add key="urlprovider" ...
-2
votes
1answer
46 views
load config from app.config if available
Im new to C# .net programming and sorry if I ask stupid question.
I have setup my programs to load setting from database instead off app.config.
However, I want it to replace the setting from ...
1
vote
1answer
19 views
ConfigurationErrorsException was unhandled
I was getting an odd error in one of my C# Batch Jobs, so I decided to rebuild it piece by piece to find out what was causing the problem. Turns out it is something called a ...
0
votes
1answer
17 views
.NET Configuration files in library Projects
I have several projects in my solution file and one of them happens to hold much of common logic applied across all the other client applications. Rather than have to replicate the same configuration ...
-1
votes
2answers
57 views
App.Config key does not modifie
I've tried these two methods that I found here on SatackOverFlow. Neither of these worked for me. Take a look at my code first:
private void button1_Click(object sender, EventArgs e)
{
...
0
votes
1answer
27 views
AppConfig.java ? tring to make this dynamic not static
I would like the end user (android app) to be able to enter an url that points to the host db, currently this works perfect however I would like to be able to install several different databases on my ...
0
votes
0answers
37 views
App/Web Config file - How to use environment variable as a configuration setting?
In .Net, is there a way to include an environment variable in app.config setting and have it's value automatically expanded during retrieval (without calling ExpandEnvironmentVariables)?
For example, ...
0
votes
2answers
18 views
Custom MSBuild Task not reading from App.config [C#]
I wrote a custom build task that reads values form the appsettings in it's App.config file. When I compile my task as an executable and run it, the task works perfectly. The correct values are read ...
1
vote
2answers
28 views
how to recreate app.config.exe.config
My program is creating a .exe.config from my app.config and that exe is retaining the changes the user makes to it throughout and after runs of my program.
That's great and all but I want to add a ...
4
votes
4answers
45 views
Variables in XML configuration
I'm trying to use xml configuration file in my project. Now it looks like:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section ...
1
vote
1answer
36 views
Edit baseaddress of config file from c#
I have an application which consumes WCF Service. I need to edit the baseAddress from application. How to access the baseAddress from c#. The part of app.config is attached below pls help on this!
The ...
0
votes
1answer
29 views
Visual Studio 2012 app.config is not updated when settings tab changes
It seems that i cant make app.config get the new settings value when i change them from the project properties settings tab.
I tried cleaning up the project and recompiling but that doesn't help.
...
1
vote
1answer
48 views
Is it possible to programmatically perform an assembly redirect
We're using Microsoft's Unity framework for dependency injection in some new class libraries. The main app is using some of the other enterprise libraries (Common and Logging) which are expecting ...
1
vote
1answer
46 views
Why is a “bindingRedirect” added to the app.config file after adding the Microsoft.Bcl.Async package?
I was wondering why nuget added the following code to my applications app.config file, after installing the Microsoft.Bcl.Async:
<runtime>
<assemblyBinding ...
0
votes
0answers
11 views
inherit the proper app.config in a program started from context menu by SharpShell
i'm trying to develop an c# app integrated with the windows shell, because of this i'm using the sharpshell library.
i'm using the sharpshell library directly in the same project, creating a dedicated ...
5
votes
1answer
154 views
How can I make all projects in a solution use a single application configuration file?
Our application is currently a mix of legacy C++ apps, C# .NET apps, and a variety of DLL and other supporting files. We recently ran into a problem where we needed to change a setting that appears ...
0
votes
4answers
48 views
App Config Modification not reflected in code
I have a appsetting section in appconfig file as
<appSettings>
<add key="DayTime" value="08-20"/>
<add key="NightTime" value="20-08"/>
</appSettings>
I am tyring to ...
0
votes
0answers
21 views
custom endpoint metadata in app.config file
I've got a app.config file for my application which defines a series of web services similar to this:
<client>
<endpoint address="https://xxxxxx.local:12610/Applicationws.svc"
...
0
votes
1answer
24 views
How do I add an ErrorHandler to my EndpointBehaviour in app.config
So I stand up a few ServiceHosts with the Spring.net proxy objects and all is well. I now want to add a custom error handler in xml. I can stand it up in spring if necessary, but I have no clue how to ...
0
votes
2answers
42 views
Parsing App.Config data to a list of objects
First off I'm not sure what the best way to go about this is, but here is my scenario, I have a large number of accounts that need to be read in a test suite. I was going to store them in xml format ...
0
votes
0answers
33 views
How to use IIS connection string property for entity framework db connection. Error: required providerName attribute
I have an application which uses entity framework for the O/R mapping. Now, i would like to outsource the connection string from the app.conf into IIS7. Then i want to use the connection string ...
0
votes
1answer
66 views
how can I load values from App.config in c# using .Net Framework 4 Client Profile
I'm having difficulty getting my settings out of App.config. The research I've done so far says that I should be able to use ConfigurationManager.AppSettings (which is part of System.Configuration).
...
0
votes
0answers
26 views
Clearing DbProviderFactories in App.config
I have an App.config where I would like to replace the provider specified in machine.config with a different version of the provider. I have tried removing the provider by name with remove and have ...
0
votes
0answers
17 views
User.config file for Window service not being created
I wrote an Windows service that is up and running in Debug mode. However when I compiled it in Release mode and try to run it. The service throws an exception at where it is trying to load ...
0
votes
1answer
46 views
Dynamically change log target file using Enterprise Logging
So I'm trying to use enterprise logging in an application, and I want it to have multiple files, so far I have the following in my app.config file:
<add name="Normal" fileName="C:\MyApp\Logs.log" ...
0
votes
1answer
45 views
Custom Config Section in app.config in Windows Service
I added custom config section in web.config MVC Web Project and it is working fine. I did the same in app.config under Windows Service Project and it is throwing error.
The type initializer for ...




