472,976 Members | 1,250 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,976 software developers and data experts.

Getting settings values in an assermbly library from an ASP.NET or Winform

WT
Hello,

Using VS2005.
I have an assembly library that can be called from a Web site asp.net
application or from a winform application.
From this library I need to retrieve a path using simply a key like
'libPath'.
As far as winform and asp.net share the same common base class for settings,
SettingsBase, how to manage this ?
For winform the value should be set in app.config and for web site in
web.config.
I am looking for some sample ?

Any help welcome.

CS
Jan 23 '07 #1
6 2755
Hi,

Web:

- Application Settings (settings must be added to the web.config manually)
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
- 2.0 Provider framework
- Proprietary file
- Database
- Registry
- WebConfigurationManager
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

Non-web:

- Application Settings (settings must be added to the app.config manually)
[same link as for web]
- 2.0 Provider framework
- Proprietary file
- Database
- Registry
- ConfigurationManager
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

I'm sure there's more choices that I haven't thought of so this is probably
not an exhaustive list.

Check if HttpContext.Current and if it's not null then it's a web
application. Otherwise, it's not a web application. With this information
you may want to change how and where the settings are persisted for your
class library, especially if security is a concern.

From the information you have provided it sounds like Application Settings
may be your best bet since it's easy to use and should work for both
applications, and it seems that you're trying to go that route already.
Copy the settings created by the default settings in your class library
project from the dll's configuration file into the app.config or the
web.config and they should work. Make sure you choose settings names that
won't conflict with other settings in the actual application.

--
Dave Sexton
http://davesexton.com/blog

"WT" <WT@newsgroups.nospamwrote in message
news:u0**************@TK2MSFTNGP02.phx.gbl...
Hello,

Using VS2005.
I have an assembly library that can be called from a Web site asp.net
application or from a winform application.
From this library I need to retrieve a path using simply a key like
'libPath'.
As far as winform and asp.net share the same common base class for
settings, SettingsBase, how to manage this ?
For winform the value should be set in app.config and for web site in
web.config.
I am looking for some sample ?

Any help welcome.

CS

Jan 23 '07 #2
WT
Thanks,

MS has to do a last step to avoid us testing HttpContext.Current... :)
CS
"Dave Sexton" <dave@jwa[remove.this]online.coma écrit dans le message de
news: OS**************@TK2MSFTNGP06.phx.gbl...
Hi,

Web:

- Application Settings (settings must be added to the web.config manually)
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
- 2.0 Provider framework
- Proprietary file
- Database
- Registry
- WebConfigurationManager
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

Non-web:

- Application Settings (settings must be added to the app.config manually)
[same link as for web]
- 2.0 Provider framework
- Proprietary file
- Database
- Registry
- ConfigurationManager
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

I'm sure there's more choices that I haven't thought of so this is
probably not an exhaustive list.

Check if HttpContext.Current and if it's not null then it's a web
application. Otherwise, it's not a web application. With this
information you may want to change how and where the settings are
persisted for your class library, especially if security is a concern.

From the information you have provided it sounds like Application Settings
may be your best bet since it's easy to use and should work for both
applications, and it seems that you're trying to go that route already.
Copy the settings created by the default settings in your class library
project from the dll's configuration file into the app.config or the
web.config and they should work. Make sure you choose settings names that
won't conflict with other settings in the actual application.

--
Dave Sexton
http://davesexton.com/blog

"WT" <WT@newsgroups.nospamwrote in message
news:u0**************@TK2MSFTNGP02.phx.gbl...
>Hello,

Using VS2005.
I have an assembly library that can be called from a Web site asp.net
application or from a winform application.
From this library I need to retrieve a path using simply a key like
'libPath'.
As far as winform and asp.net share the same common base class for
settings, SettingsBase, how to manage this ?
For winform the value should be set in app.config and for web site in
web.config.
I am looking for some sample ?

Any help welcome.

CS


Jan 23 '07 #3
Hi CS,

To use a class library which has its own configurations either in a WinForm
application or a Web application, since .NET can only load a default
configuration file per AppDomain (which is by default the .exe.config with
the executing assembly), the dll cannot have separate complete
configuration file for it. However, using an optional attribute named
"configSource" for the confugration file's section elements, we could put
some configuration sections in a separate config file, this will prevent
copying/merging large parts of the configuration data, only the
configSource attribute is needed to modify.
========================
General Attributes Inherited by Section Elements
http://msdn2.microsoft.com/en-us/library/ms228167.aspx

configSource
Optional String attribute.

Specifies the name of the include file in which the associated
configuration section is defined, if such a file exists. Programmatically
accessible through the ConfigSource property.
========================

Here's some usage scenario:

1) Create a Class Library named "ClassLibrary1", use the Settings Designer
to add some application-wide settings into it.
2) Open app.config, it will roughly have following content:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGrou p, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ClassLibrary1.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"
/>
</sectionGroup>
</configSections>
<applicationSettings>
<ClassLibrary1.Properties.Settings>
<setting name="libPath" serializeAs="String">
<value>d:\temp</value>
</setting>
</ClassLibrary1.Properties.Settings>
</applicationSettings>
</configuration>
3) Create a new xml file, named it as "ClassLibrary1.dll.settings.config",
copy the inner content of the <applicationSettingstag to this file:

<ClassLibrary1.Properties.Settings>
<setting name="libPath" serializeAs="String">
<value>d:\temp</value>
</setting>
</ClassLibrary1.Properties.Settings>
4) Modify app.config: remove the inner content of the tag
<ClassLibrary1.Properties.Settings>, add an attribute "configSource" to it
as:

<applicationSettings>
<ClassLibrary1.Properties.Settings
configSource="ClassLibrary1.dll.settings.config">
</ClassLibrary1.Properties.Settings>
</applicationSettings>

5) Note the Settings Designer will still work correctly, modifying settings
will reflect changes to the separate file
"ClassLibrary1.dll.settings.config" instead of the App.Config.

6) For test purpose, create a static property in one public class in this
class library to return the setting "libPath".

7) Now create a winform/console/web application, reference the class
library, modify this application's app.config or web.config to modify the
<configSectionspart as:

<configSections>
<sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGrou p, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ClassLibrary1.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"
/>
</sectionGroup>
</configSections>
<applicationSettings>
<ClassLibrary1.Properties.Settings
configSource="ClassLibrary1.dll.settings.config">
</ClassLibrary1.Properties.Settings>
</applicationSettings>

8) Copy the ClassLibrary1.dll.settings.config from the class library
project to this project. If this is the web project, just copy to the same
directory with web.config; otherwise, make sure you set its "Copy to output
directory" property to "Copy always".

9) Now calls into the class library's static property defined in step 6),
change the local 'ClassLibrary1.dll.settings.config', it should reflect
updated value.
Hope this helps. Let me know if there's anything unclear.
Sincerely,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Jan 24 '07 #4
Please note I haven't fully tested this approach, though it seems working
on my side using a simple web site and a simple console application. If you
do find any issues, please feel free to let me know.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Jan 24 '07 #5
WT
I will try it, seems good solution.
More later, thanks.
CS
"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: 0a**************@TK2MSFTNGHUB02.phx.gbl...
Please note I haven't fully tested this approach, though it seems working
on my side using a simple web site and a simple console application. If
you
do find any issues, please feel free to let me know.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jan 25 '07 #6
For me this fails to work since it only picks up default values and
not stuff from the config file.

Regards
Lars Schouw

Mar 2 '07 #7

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

Similar topics

2
by: Aniket Sule | last post by:
Hi, Is there a way to read Component Services /IIS settings values using c# ? I am specifically interested in the COM Transaction timeout value and the IIS connection timeout value. Are these in...
2
by: Ben Dewey | last post by:
Hey, I have kind of an architecture question. I have a dynamic website that is using a Windows Form Backend and a ASP.NET front end. They are both using C# 2.0. I also have a class library...
10
by: Dan | last post by:
I use the settings grid to create a setting named "ServerName". Now i want to retrieve it in code and i can't figure out how. This should be incredibly obvious but i cant get it. I have tried...
2
by: sobmir | last post by:
A I'm new to c# and I came from c++ also. I want to create dynamicaly winform to get some data. I create a array of object as a description of variable which I want to get. I pass this array to a...
1
by: Brett Romero | last post by:
I've created a new settings file named AppList.settings for a Winform app. In the Program.cs file, I can access values in settings.settings fine. However, when I do this: ...
4
by: Richard Lewis Haggard | last post by:
I have an application that can't use the registry to save various user options and application settings. My first thought was to simply use an application configuration file but this approach seems...
13
by: Dave | last post by:
When using the properties designer to store application wide properties how do you get this to work across a project group containing an EXE and a collection of DLLs. I'm using C#.Net 2005. I...
11
by: =?Utf-8?B?bWljaGFlbCBzb3JlbnM=?= | last post by:
I have worked with application settings in VS2005 and C# for awhile, but usually with standard types. I have been trying to store a custom container/class/type in an application setting and I have...
3
by: John | last post by:
Hi Is there a way to have application settings in asp apps, like those in winform apps? Thanks Regards
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
4
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.