Re: [Mono-dev] Random mono apache errors

2013-08-26 Thread Vladimir Dimitrov
Almost the same thing just happened again. I got this error when calling a web service on the apache/mono server: System.Exception: INTERNAL configuration error: failed to get configuration 'system.diagnostics' at System.Diagnostics.DiagnosticsConfiguration.get_Settings () [0x0] in

Re: [Mono-dev] Random mono apache errors

2013-08-26 Thread Daniel Lo Nigro
1. Use the open source way, find and fix it myself and hope that we will have this change in the official mono one day. I've fixed a few bugs with Mono (most around the ASP.NET routing implementation) and I've found that the Mono developers are pretty good with pull requests. If you do a good

[Mono-dev] Random mono apache errors

2013-08-21 Thread Vladimir Dimitrov
Hey guys, I have worked with mono for almost 7 years but I recently got involved in a project that used mono web services and apache together on Linux. The problem is that as the load on the service started to rise we started getting different errors which appear in random intervals. One

Re: [Mono-dev] Random mono apache errors

2013-08-21 Thread Rafael Teixeira
From sources ( https://github.com/mono/mono/blob/master/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapDocumentationHandler.cs ): if (key == wsdl || key == schema || key == code || key == disco) return; #if NET_2_0

Re: [Mono-dev] Random mono apache errors

2013-08-21 Thread Vladimir Dimitrov
I got to this point in the sources too, but I have no idea what I can do or why didn't many other people got the same problem? On 21.8.2013 г. 15:20 ч., Rafael Teixeira wrote: From sources