[Mono-dev] log4net, ndoc and mono-2.8

2010-10-26 Thread Paul F. Johnson
Hi, Has anyone managed to get log4net to build with mono-2.8? It keeps hanging up and complaining here. ndoc is dead with the advent of mono-2.8. Is there something which can replace it that is OSS? TTFN Paul -- Vertraue mir, ich weiss, was ich mache...

Re: [Mono-dev] log4net, ndoc and mono-2.8

2010-10-26 Thread Stefanos A.
2010/10/26 Paul F. Johnson p...@all-the-johnsons.co.uk Hi, Has anyone managed to get log4net to build with mono-2.8? It keeps hanging up and complaining here. ndoc is dead with the advent of mono-2.8. Is there something which can replace it that is OSS? Inline doc comments (///) +

[Mono-dev] High Traffic Site (for Harry Potter 7) is crashing!

2010-10-26 Thread Matthew Urbano
I've created a site for the new Harry Potter movie which is expected to get a high volume of traffic, and on launch day we are now crashing. We are getting the following errors on the webservers due to traffic: Maximum number of concurrent mod_mono requests to

Re: [Mono-dev] High Traffic Site (for Harry Potter 7) is crashing!

2010-10-26 Thread Alan
Did you read through the docs here? http://www.mono-project.com/Mod_mono#Limiting_the_number_of_concurrent_requests . It covers increasing the concurrent users in a variety of different ways. Alan. On Tue, Oct 26, 2010 at 9:59 PM, Matthew Urbano matthew.urb...@trailerpark.com wrote: I've

[Mono-dev] Unable to work with Configuration files

2010-10-26 Thread vinay_rk
Hi, When I run my app (that is built using XBuild) in Mono from the command prompt (using command Mono exe name ) , I always get the below error whenever the app tries to access the config file. Basically the App is trying to open some custom config sections. Error: FATAL[1]

Re: [Mono-dev] Unable to work with Configuration files

2010-10-26 Thread Sebastien Pouliot
On Tue, 2010-10-26 at 14:23 -0700, vinay_rk wrote: Hi, When I run my app (that is built using XBuild) in Mono from the command prompt (using command Mono exe name ) , I always get the below error whenever the app tries to access the config file. Basically the App is trying to open some

Re: [Mono-dev] Unable to work with Configuration files

2010-10-26 Thread vinay_rk
What I' am doing in my AppConfig is define custom sections like this : configuration configSections section name=CustomSectionName type=FullQualifiedNameOfCustomSectionHandler/ - - The custom handler derives from System.Configuration.ConfigurationSection. There

Re: [Mono-dev] High Traffic Site (for Harry Potter 7) is crashing!

2010-10-26 Thread Gonzalo Paniagua Javier
On Tue, 2010-10-26 at 13:59 -0700, Matthew Urbano wrote: I've created a site for the new Harry Potter movie which is expected to get a high volume of traffic, and on launch day we are now crashing. We are getting the following errors on the webservers due to traffic: Maximum number of

Re: [Mono-dev] High Traffic Site (for Harry Potter 7) is crashing!

2010-10-26 Thread Gonzalo Paniagua Javier
Oh, forgot another small detail. What does 'ulimit -n' report in that server? -Gonzalo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] GTK# message dialogs and use_markup

2010-10-26 Thread Francis A. Bausch
After upgrading to mono 2.8, I am having problems with simple GTK# message dialogs not showing any text when use_markup is not explicitly false. The text strings are simple, non-XML messages, i.e., do not do that This is only happening on our Linux i386 and x86_64 platforms, and not on our

Re: [Mono-dev] Unable to work with Configuration files

2010-10-26 Thread Sebastien Pouliot
On Tue, 2010-10-26 at 15:03 -0700, vinay_rk wrote: What I' am doing in my AppConfig is define custom sections like this : configuration configSections section name=CustomSectionName type=FullQualifiedNameOfCustomSectionHandler/ - - The custom handler