Tagged Questions
0
votes
0answers
19 views
IIS 7.0 WCF Web Config Error
I created WCF Service Application in Visual Studio, copied the DLL's to IIS and all was working fine - I could connect to the service with a client.
I have made changes to the Web config file to use ...
0
votes
1answer
32 views
Small tool to edit app settings
I need to small tool in Windows environment to change an entry in appsettings.config.
It can be a cmd tool which I can write a batch file on it.
Does anyone have a clue?
Thanks
0
votes
0answers
14 views
Workaround/Alternative for IIS8 not accepting PUT verb
Is there a work around for IIS8 to accept the PUT and DELETE verbs without actually making any modifications to IIS8 config? The reason I am asking this is because I have a mobile webapp which 'PUT's ...
0
votes
0answers
28 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 ...
0
votes
3answers
81 views
2
votes
2answers
93 views
How do I reload/refresh app.config?
I want to read the app.config value, show it in a message box, change the value using an external text editor, and finally show the updated value.
I tried using the following code:
private void ...
0
votes
2answers
112 views
How to Override a Value in Web.config Programatically
I am developing a web app with a group of people and we all have different connection strings to our database.
The connection string is stored in our web.config which is source controlled, and ...
1
vote
1answer
40 views
Unity 2.0 Registering generic via config
I'm still having difficulty getting unity to register my generic dependency even after referring to the following post.
My code is simpler in that it doesn't implement the GenericRepository<T> ...
0
votes
4answers
300 views
Read config file from asp.net
I'm creating a web application, which calls a DLL to run unit tests, I also have another DLL(DataAccessLayer) which performs connections and performs queries to SQL which references the main DLL. Both ...
2
votes
2answers
129 views
how to read another exe's app.config file - as name value pairs
To read the AppSettings section from your current application's app.config is easy - you can just use ConfigurationManager.AppSettings, which returns a series of name/value pairs you can read.
But ...
0
votes
1answer
63 views
.NET 4,0 Listeners change
I upgraded some legacy console application from .NET 2.0 to .NET 4.0. I am getting a runtime error on the first line of Main() that "type is not a recognized attribute". It is originating from the ...
2
votes
1answer
2k views
How to set access control allow origin on particular file web.config
If this were a dynamic response, I'd simply do Response.Headers.Add("Access-Control-Allow-Origin", "*"); but I have a static file I'd like to allow cross domain access to.
Is there a way to assign ...
2
votes
0answers
135 views
.NET config files issues of proprietary soft
I wrote an extension for big proprietary platform - DocsVision. This platform works using .NET 3.5 SP1, but I wrote my extension, using .NET 4 (I think, why not?)
Later, when DocsVision used Internet ...
1
vote
1answer
490 views
soap response encoding '?' characters in all strings instead of russian .Net proxy, Java server(?)
I generate proxy classes with wsdl.exe to request web-services, that are probably build at java platform. The problem is with encoding of response. I get '?' instead of russian letters.(for example ...
0
votes
1answer
111 views
To configure .wsdl for using
I have connected .wsdl file to my project (by adding service reference). Wcf described by .wsdl has had configurations without which it can't be ised in my project.
What should I do to set up these ...
1
vote
0answers
163 views
Configuration in a dynamically loaded DLL
I loaded a DLL through Assembly.LoadFile. Objects of a class, that is described in the DLL, need initial configuration prior to use but I can't add a .config file to a DLL.
Is there a way to load a ...
0
votes
0answers
76 views
Config file and VsPackage
everyone. I am creating a Static Analyze tool. My application has a config file, which contain next lines:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
...
0
votes
0answers
45 views
Associate a web service version to an endpoint in config file
I have a client that connects to different versions of a web service so I have several endpoints defined in my client config file. The client discovers which endpoint to use only at runtime.
What ...
6
votes
1answer
228 views
Avoid version specific information in configSection in app.config
I have made a small GUI for administration of some settings in an app.config file. The GUI is released as part of my product, making it possible to change values in the app.config file, without ...
2
votes
2answers
440 views
T4 Template containing XML results in parse errors
I have created T4 Templates for the config files of my web and windows projects. I can successfully generate master web.config, and all configs for other environments, i.e. web.ci.config, ...
2
votes
1answer
1k views
Quartz.NET ADO.net DB Configuration
This should be a really easy question. I created the DB for Quartz.NET and populated all of the tables and stuff, now I'm just trying to configure my project to interact with the DB. I can handle the ...
3
votes
2answers
182 views
How to determine if a config section or element is loaded from app.config or machine.config?
I am loading the bindings section from configuration like so
var bingingsSection = BindingsSection.GetSection(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None));
How can I ...
0
votes
0answers
245 views
Unity config for WCF service
I'm trying to move Unity configuration from the code to Unity.config XML file, but for some reason I'm not able to register WCF service to container (to be honest I just don't know how).
Here is the ...
1
vote
1answer
171 views
Read/Write to xml that was generated using csd
I've used the Configuration Section Designer (csd) to generate an xml configuration file to my application.
Now, I want to work with this xml file (on c#) and do 2 things:
1. read a specific value ...
0
votes
2answers
112 views
How do I get my .Net Library to Inherit its config file settings from the requested App
I compile my .NET Library, and it creates mylib.dll.config
But when I modify or even delete this file, it is clearly not being used.
My ASP.NET Website has the exact same settings in it anyway, so ...
2
votes
2answers
438 views
Store dotnet app settings in database instead of app.config
I have stored all my application (key-value pair) settings in the app.config so far in my Windows Forms application. I'd like to change it, because
I should store settings by user (NOT win user, ...
1
vote
1answer
193 views
How to share application settings between multiple servers
I have 2 webservers and 3 application servers with multiple applications.
I would like to be able to have some kind of a system such that applications from all servers could access common basic ...
0
votes
0answers
367 views
WCF wsHttpBinding + Windows Authentication failing over SSL
This service worked no problem without SSL, but it is failing when using SSL. I will assume it is a configuration error and post the relevant config files
What do I mean by failing? I get the ...
0
votes
2answers
396 views
Rewriting URL that has 2 question marks in it using Rewriter in Config
I can't use friendly URLs in my DotNetNuke site and a module that I want to use requires it. The problem is when they post to the 2nd part of the module process they tack on a "?ctlname=Step2" and ...
0
votes
1answer
84 views
Why does UdpClient instantiation cause a ConfigurationException?
I recently added a configuration section to my App.confg file. Although I realize the section was invalid, my application actually ran, up until it hit this line:
this.udpClient = new UdpClient();
...
3
votes
3answers
989 views
What are best practices storing configuration settings a .NET application? [closed]
Configuration file handling is a common problem so I wondered why nobody has asked a similar question yet. In .NET we usually use the app.config file for application runtime paramaters, however this ...
0
votes
3answers
129 views
Project asking for a config setting that's there already
Here is the code that I am calling:
try
{
using (var client = new WCFServiceChannelFactory<IFxCurveService>())
{
guid = client.Call(svc => svc.ReserveSnapshot(fxCurveKey));
...
0
votes
1answer
406 views
how to get the key name from app settings with associated with value in app settings
can anyone tell me how to get the key name associated with a value in <app settings>
0
votes
1answer
126 views
Configuration GUI Deployment, Place in the same directory? C#
I am writing a GUI to configure my service written in C#.NET 3.5, it edits an embedded SQLite database from which the service pulls its settings. The GUI is being developed in a seperate project and I ...
1
vote
1answer
293 views
Querying web.config using LINQ
I think the API for ASP.NET config files is way-outed. There's a new System.Web.Configuration.WebConfigurationManager class with .NET 4, but its built in the same mold as ...
4
votes
2answers
442 views
Building a dynamically generated configuration UI using reflection on .NET Config Datatypes
Has anyone got any experience with / attempted to do this?
We have some reasonably complex XML config for our .NET application and were thinking it would be nice if we could use our config object ...
4
votes
1answer
273 views
Best practices to create connection files
I have an application which i have some configuration files for cache, queue, and database.
public class ServerConfiguration: ConfigurationSection
{
[ ConfigurationProperty( FOO, DefaultValue = ...
0
votes
1answer
412 views
IPC in Mono & .NET
I am implementing a configuartion mechanism (GUI) for my windows service which is to be portable (linux daemon) via mono. I am using the app.config file and planned to expose methods used to write to ...
5
votes
1answer
10k views
WCF 'A Call to SSPI Failed, see inner exception'
I had a self-hosted win service WCF installed and running at one point.
Naturally, I had to make some changes. So I changed the base address back to my local workstation and made the changes. It ...
4
votes
3answers
366 views
WCF as Service: Modifying app.config file
I have a WCF running as a Windows service. I deployed it to a server (after quite a bit of banging my head against the keyboard).
Last issue: When making changes to the app.config ...
0
votes
2answers
137 views
So where is it looking for the COM/WCF config file?
Hi I have an arrangement where I am replacing legacy code with a shiny new WCF based service.
I have a dll (a.dll) that calls a dll that I am replacing (b.dll)
b.dll uses a WCF call to access ...
1
vote
1answer
85 views
update 3rd party's .config transformation's from installer
I have 2 .config files that have to be configured. One is a web.config and one is an app.config, both of these files are from a 3rd party vendor that our code runs inside. So we need to make ...
3
votes
1answer
212 views
Migrating user-level custom settings when upgrading app
I have an application that uses a custom configuration section for user-level settings. It's done this way instead of using Settings files so that the settings can be centralized in a single ...
0
votes
1answer
809 views
How to set key size of RSA key created using aspnet_regiis?
I have created a customer RSA key container (for encrypting connection string in web.config) using the following command:
aspnet_regiis -pc "TestKeys" -size 2048 -exp
I then exported the key to an ...
0
votes
1answer
97 views
Using one app setting variable definition in another app setting variable
Is there a way to use one app setting variable definition in another app setting variable?
This is an example, right now I have:
<add key="P4RootDirectory" value="d:\p4\" />
<add ...
1
vote
1answer
590 views
Is there a way to have custom defined friendly URLs with WCF without IIS?
Is there a way to have custom defined friendly URLs with WCF without IIS?
In particular I'm looking to do something like this via an app.config hosted in my own Windows service:
[WebGet(UriTemplate ...
0
votes
1answer
910 views
Problem adding a behaviors element to my WCF client config
I'm trying to add a behaviors element to my client config file so I can specify maxItemsInObjectGraph.
The error I get is: The element 'system.serviceModel' has invalid child element 'behaviors'. ...
1
vote
2answers
241 views
Sharing custom config section across multiple systems
I have multiple projects like WEB / EXEs / WCF services / windows services in my solution and all these systems are referring to custom configuration section settings as mentioned below. At present, I ...
1
vote
3answers
276 views
how do I ensure that the config file is identical to the vshost.exe config file
This question has been edited after a poster suggested it needed improvement:
This is a Visual Studio behaviour question. If I make config file changes using an XML editor, do I have to edit both ...
4
votes
3answers
932 views
How would you centralize configuration across multiple projects?
I have a solution with about 10 projects with read-only config. They are web applications, windows services, console apps, etc. All projects except for one are on the same server. Each project has ...