0
votes
1answer
18 views
Extending configuration for .Net 3.5 Applications
Due to a requirement in my current project, I have to build a configuration manager to handle configurations that merge local config info with database one.
Custom configuration doesn't fit my needs, …
0
votes
1answer
28 views
How to implement a sample log4net repository
How do I implement a custom LOG4NET parser for my XML file. My XML file contains:
(1) extra attributes on the appender element
(2) custom replacements on the elements of some of the appenders that …
2
votes
3answers
33 views
ConfigurationManager.AppSettings[”SettingName”] vs Properties.Settings.Default.SettingName when should I use each?
What should dictate when I should use the configurationManager.AppSettings or the strongly typed settings that visual studio generates? The strongly typed ones seem much more appropriate in most …
0
votes
2answers
39 views
How to read ruby on rails config values from within the application controller
If i have a configuration file like this
# config/environments/integration.rb
config.action_controller.session = {
:domain => ".example.com"
}
How do Ii get the value from within my …
0
votes
4answers
83 views
Is there a way to force a new line after php closing tag ?> when embedded among html??
I have been searching online with little success for a way to force php to output a newline after a closing php tag ?> so that my HTML will be rendered as I see it before its parsed by PHP so that …
0
votes
2answers
13 views
WCF with self-signed SSL in IIS 6.0, getting strange error on client
I have a WCF service that is running on IIS 6, and must be accessed via SSL, containing a self-signed certificate. I've gone through the configuration a million times and everything look correct, but …
0
votes
0answers
18 views
Retain quotation marks in Zend .ini config
Hi,
I am building a website and I require quotation marks in a configuration value.
Example:
convert_arg = -resize "1000x1000>" -strip -trim +repage -density 72x72 -sampling-factor 4:2:0 …
0
votes
4answers
41 views
Setting trust level in Sharepoint without changing web.config
I want to change the trust level of a Sharepoint Web Application without having to change the web.config manually (i.e. WSS_Minimum, WSS_Custom, etc). Making manual changes to the web.config tag is …
1
vote
1answer
19 views
Completely remove configuration from root in Asp.net
In ASP.Net, if we create application from directory, the configuration from root will be inherited to its children application.
www.mywebsite.com
|
|-- [blog]
|-- [forum]
|-- [others]
so I …
0
votes
0answers
48 views
Custom configuration issue (c#)
Hi everybody,
I'm woking on a project that requires to extend ConfigurationSection for every configuration object. Configuration information is stored into the database and it can be overriden by …
2
votes
2answers
35 views
Share WCF settings between service and client
Can WCF sevice and client share the same settings (from the same config file) about bindings, etc.., whatever is in? In other words, can I write a single bindings section and put in anything and be …
0
votes
1answer
19 views
phpUnit config options
what do the following options mean or whats it for
<log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"/>
…
1
vote
3answers
156 views
Taking baby-steps in applying a better design
In wanting to get some hands-on experience of good OO design I've decided to try to apply separation of concerns on a legacy app.
I decided that I wasn't comfortable with these calls being scattered …
2
votes
2answers
37 views
Hibernate Configuration Xml
Hi. I am developing a java web application using hibernate as ORM. Is it possible to merge Hibernate.cfg.xml with the applicaion-config.xml?
0
votes
0answers
21 views
modifying Rails load paths in the Rails::Configuration block
I'm trying to figure out how to have Rails NOT load the root models and
controllers at app/models and app/controllers at boot. I've tried
setting config.load_paths (with config being the …
