473,670 Members | 2,298 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AppSettingsRead er.. don't work ;-(

for this config file:
//--------
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="Lion's Port"
value="1971"/>
</appSettings>
</configuration>
//--------

the following call work:
string sPort = ConfigurationSe ttings.AppSetti ngs.Get("Lion's Port");

but this one fail:
object port = new AppSettingsRead er().GetValue(" Lion's Port", typeof(int));

with the error: the key 'Lion's Port' doesn't exist in the appSettings
section

what's wrong ?
Nov 15 '05 #1
3 7893
Hi Lloyd,
I presume that the problem is with the key name "Lion's Port". Just
check with some other string which doesnt have any " ' " in the key name.
The code looks perfect.

Pawan.
"Lloyd Dupont" <net.galador@ld > wrote in message
news:uC******** ******@TK2MSFTN GP09.phx.gbl...
for this config file:
//--------
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="Lion's Port"
value="1971"/>
</appSettings>
</configuration>
//--------

the following call work:
string sPort = ConfigurationSe ttings.AppSetti ngs.Get("Lion's Port");

but this one fail:
object port = new AppSettingsRead er().GetValue(" Lion's Port", typeof(int));
with the error: the key 'Lion's Port' doesn't exist in the appSettings
section

what's wrong ?

Nov 15 '05 #2
Lloyd,
I tried to use this and it absolutely works fine .....
object port = new AppSettingsRead er().GetValue(" Lion's Port",
typeof(int));

imageDescriptio n.Text = port.ToString() ;

Cheers ..
Pawan.


"Lloyd Dupont" <net.galador@ld > wrote in message
news:uC******** ******@TK2MSFTN GP09.phx.gbl...
for this config file:
//--------
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="Lion's Port"
value="1971"/>
</appSettings>
</configuration>
//--------

the following call work:
string sPort = ConfigurationSe ttings.AppSetti ngs.Get("Lion's Port");

but this one fail:
object port = new AppSettingsRead er().GetValue(" Lion's Port", typeof(int));
with the error: the key 'Lion's Port' doesn't exist in the appSettings
section

what's wrong ?

Nov 15 '05 #3
it did, mmhh.....
have to try again.... (I reboot since, that might be a reason)
I don't understand !

do you have some [STAThrea] attribute on your main ?

"Pawan" <pa*******@hotm ail.com> wrote in message
news:eN******** ******@tk2msftn gp13.phx.gbl...
Lloyd,
I tried to use this and it absolutely works fine .....
object port = new AppSettingsRead er().GetValue(" Lion's Port",
typeof(int));

imageDescriptio n.Text = port.ToString() ;

Cheers ..
Pawan.


"Lloyd Dupont" <net.galador@ld > wrote in message
news:uC******** ******@TK2MSFTN GP09.phx.gbl...
for this config file:
//--------
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<appSettings>
<add key="Lion's Port"
value="1971"/>
</appSettings>
</configuration>
//--------

the following call work:
string sPort = ConfigurationSe ttings.AppSetti ngs.Get("Lion's Port");

but this one fail:
object port = new AppSettingsRead er().GetValue(" Lion's Port",

typeof(int));

with the error: the key 'Lion's Port' doesn't exist in the appSettings
section

what's wrong ?


Nov 15 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

303
17597
by: mike420 | last post by:
In the context of LATEX, some Pythonista asked what the big successes of Lisp were. I think there were at least three *big* successes. a. orbitz.com web site uses Lisp for algorithms, etc. b. Yahoo store was originally written in Lisp. c. Emacs The issues with these will probably come up, so I might as well mention them myself (which will also make this a more balanced
0
289
by: Marty McDonald | last post by:
We've created our own configuration handler. Some of our existing apps currently have... AppSettingsReader MyConfigRdr = new AppSettingsReader(); string strConfigValue = ((string)(MyConfigRdr.GetValue(WhatValue, typeof(string)))); My issue is this... I'd like to redirect the AppSettingsReader to use our own custom section by using <configSections>. Is that possible, or is the AppSettingsReader bound tightly to the <appSettings> node? ...
2
2474
by: rawCoder | last post by:
Hi, Consider following app.config <configuration> <appSettings> <add key="Fields" value="Field1" /> <add key="Fields" value="Field2" /> <add key="Fields" value="Field3" /> </appSettings> </configuration>
3
3047
by: Douglas Buchanan | last post by:
Buttons don't work if form is opened on startup A2k If 'frmMain' is set to open by default at startup none of the buttons work. If 'frmMain' is opened from the database window then all the buttons work. The form's name ('frmMain') is selected from in the Startup dialog box.
28
2489
by: DFS | last post by:
I'm unfortunately about to change, or sever, a two-year relationship with a very slow-paying client. Most of the 15 invoices I've sent them arrive 6 to 8 weeks late, and usually only after repeated calls to the requesting client department, AP and finally Legal. I really think they would never pay some of these invoices if I didn't hound them. I don't have the time or energy or stress-handling to make repeated collection calls and...
19
3869
by: LP | last post by:
I am using (trying to) CR version XI, cascading parameters feature works it asks user to enter params. But if page is resubmitted. It prompts for params again. I did set ReuseParameterValuesOnRefresh="True" in a viewer, but it still doesn't work. Did anyone run into this problem. What's the solution? Please help. Thank you
0
1581
by: Matt Adamson | last post by:
Guys, When writing unit tests for our assemblies we'd like to change configuration values at runtime for some tests i.e. to test all code paths are executed. e.g. one method would create a test with a value set to true and the next test method would set it to false. I can set the values in the config file easy enough using the following approach
0
1619
by: Tina | last post by:
I have googled several articles on how to get an AppSettings out of the web.config and into a string in C# and none of them work. The following code gets an error on the = sign in myString = I have tried every option on the second parameter trying to specify string. What's wrong with the last statement? What statement would work? Thanks,
0
8386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8592
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8661
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7419
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6213
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5684
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4211
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2042
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1794
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.