configuration

Is there any library for C# providing a thread pool that will execute no more than X tasks per unit of time?

A problem is that a particular resource cannot handle more than 1 request per second and I want to pass that parameter to a thread pool that manages all concurrent calls to that resource. Is there any library that offers such kind of custom thread pool or I should look forward to implement my own? Thanks. ...

PHPUnit: Multiple Bootstraps or XML files?

I have a PHP MVC framework with multiple 'applications' under this system the organization goes \project\apps\app1\ \project\apps\app2\ \project\apps\shared\ Each application can have it's own set of controllers \project\apps\app1\controllers\FooContoller.php \project\apps\app2\controllers\FooContoller.php \project\apps\shared\contr...

Should app developer have to explicitely allow enabling tracing via the app.config file?

Let's have a class, which is able to log it's operations to a trace file. This trace file might include sensitive data (like usernames or hostnames). Tracing can be enabled in code like this: MyClass instance = new MyClass(); // turn on tracing for this instance instance.LogWriter = new FileLogWriter("path_to_trace_file"); It should ...

How to configure subversion auto-props for unix scripts with no .sh suffix?

Not all of my bash shell script end in .sh. Some have no suffix at all. In my subversion auto-props configuration I have... *.sh = svn:eol-style=native;svn:executable;svn:keywords="Author Date Id HeadURL Revision" ...and it works. But how can I configure it to also pick up the shell scripts with no suffix. In my case they are the ...

IIS can't find JavaScript and CSS files

Hi, I've been working on this for a while and was wondering if anyone has run into the issue of error 404 on IIS. More specifically, when I type in http://localhost/test/test.aspx, the page runs, but the referenced files (JS and CSS) are not being used. Does anyone have an idea on what this could be? keep in mind that I'm new to IIS (...

Exception thrown on creation of Google App Engine Google Web Tools initial project

The following log file is created when I create a GAE GWT project: java.lang.RuntimeException: Unexpected exception at com.google.appengine.tools.enhancer.Enhancer.execute(Enhancer.java:59) at com.google.appengine.tools.enhancer.Enhance.<init>(Enhance.java:60) at com.google.appengine.tools.enhancer.Enhance.main(Enhance.java:...

sendmail tls "verify=failed" - CA config?

I've been trying to get my sendmail config to do TLS for quite a while now. I'm running FreeBSD, pretty much stock -- sendmail, apache, bind. I have a NetSol certificate, this works fine for Apache https connections. I'm trying to get this same certificate to work for TLS. First question: is this a bad idea? I can confirm the option...

Apache ErrorDocument after auth_digest has run and failed in apache2.conf

Heya, how goes it? I'm having an issue with apache2. I have a bunch of sites working off virtual hosts on an apache2 box, and a few of them have apache auth setup. When it fails, I wanted to customize the error page (401?), and so I tried throwing in: ErrorDocument 401 "Woops" into the rule, but it didn't work. To make sure I tried th...

Configuration parameters in file or DB?

What will be best practice for this? ...

how to configure apache tiles to read jsps from inside jar files?

Hi, The architecture of my web application is highly modular. I am using apache tiles as the templating framework. The app modules are bundled as different jar files and put inside WEB-INF/lib folder. So each jar file will contain its own tiles configuration files (containing tiles definitions) and related jsp templates. I am using Com...

PHP Header("Location:...") works on one computer and not another...

So I just got a nasty surprise when I deployed some code I thought I'd tested. It would seem there must be some difference between my test machine and my server. The exact same code, featuring a header redirect, worked perfectly on my test machine and not at all on the server. The redirect on the server simply didn't happen, leaving a...

no such file to load -- thinking-sphinx

When running script commands like script/console I get the error message: no such file to load -- thinking-sphinx In my evironment.rb file I have: config.gem 'thinking-sphinx', :version => '1.3.18', :require_as => 'thinking_sphinx' In my rake file: require 'thinking_sphinx/tasks' I have following versions: gem 1.3.7 ruby 1.8.7 ...

SQL Navigator prompts every time I'm closing it

I'm using SQL Navigator that is connected to the Oracle server of our company. Whenever I run a query or two and exit the program, it prompts the following confirmation window: I don't think that I have pending transactions. To close the program, I have to click on Yes or No and this is annoying. I also tried that: I opened the pr...

A question about writing data to a custom section?

Hi guys, below is my class thanks to the article found at: URL: Derik Whittaker My Code: public class FavsSection : ConfigurationSection { public override bool IsReadOnly() { return base.IsReadOnly(); } public FavsSection() // default Constructor. { } [ConfigurationPro...

TypeInitializationException when starting Windows Service because config section can not be created

I have a strange error on a specific Windows Server 2008 R2 machine (it works on other 2008 R2 machines) when starting a Windows Service. The service uses Common.Logging and log4net. However, on this specific machine the config section handler for Common.Logging can not be created. It fails with the following stack traces (formatted for...

Where should I place text that I'm trying to abstract in my CakePHP application?

I am writing a CakePHP application and am trying to have text that is frequently displayed (or particularly long) saved in a config file somewhere that we can easily edit it. Where should i put this file and how do I access it? I am also worried about the tradeoff in speed of reading this file when we need to display text, as well as loc...

Tomcat reload problem

hi guys! I am using Tomcat 6.0 in Eclipse 3.6, every time when I modified a Java file,Tomcat will reload the whole Context. I wanna is there anyway to get rid of this. while testing some function after login into my web application,If I changed some Java source file ,I need to login again and repeat my operation, it's painful.How can I...

Configure Memcached with Rails 3

Hi :) I'm having problems trying to use Memcached in a Rails 3 Application ... My question is quite simple : How I'm supposed to configure Memcached to make it works with Rails 3 ? Thanks for your help ! Edit: It looks like the object isn't correctly deserialized by the Rails.cache.read no matter :raw => true or :raw => false but th...

VS 2008 Code Snippets - Removing an entire folder

OK, this is somewhat frustrating. We have a folder containing custom code snippets used by our company to ensure coding standards and the like. I was documenting the process of actually adding said folder to Visual Studio 2008, when I accidentally added the wrong folder (I added the folder one level up). Since we have both C# and VB s...

More sub-settings in config file

Can anybody tell me, how can I read this from a config file? <DatabaseTypeMap> <DatabaseType Type="130" Name="Edit" /> <DatabaseType Type="129" Name="Edit" /> <DatabaseType Type="3" Name="Count" /> <DatabaseType Type="135" Name="Date" /> </DatabaseTypeMap> I use that: public class DatabaseTypeMapElement : ConfigurationElement...