Re: [Mono-dev] Webapp stuck with Key duplication when adding: httpModules

2014-10-23 Thread Etienne Champetier
After some more investigation, reading many lines of code with a collegue, we came to the conclusion that this exception is impossible :) (yet the web is stuck on it) m_ItemsContainer is an hashtable, and a private field of NameObjectCollectionBase class (new HashTable(0,StringComparer.Ordinal)).

Re: [Mono-dev] Webapp stuck with Key duplication when adding: httpModules

2014-10-23 Thread Robert Jordan
On 23.10.2014 13:25, Etienne Champetier wrote: After some more investigation, reading many lines of code with a collegue, we came to the conclusion that this exception is impossible :) (yet the web is stuck on it) Are you sure that this NameObjectCollection isn't mistakenly accessed from

Re: [Mono-dev] Webapp stuck with Key duplication when adding: httpModules

2014-10-23 Thread Greg Young
I would be looking for threading issues here. On Thursday, October 23, 2014, Etienne Champetier champetier.etie...@gmail.com wrote: After some more investigation, reading many lines of code with a collegue, we came to the conclusion that this exception is impossible :) (yet the web is stuck

[Mono-dev] GTK# Combobox - Limiting height of the dropdown?

2014-10-23 Thread DustinS
Sorry if this has already been asked (I did search), but does anyone have any idea how to limit the height of the dropdown on a combobox? I've looked around a ton, but I couldn't find any solutions. Thanks! -- View this message in context:

Re: [Mono-dev] Houston error during web request on Apache 2.4

2014-10-23 Thread APS
Some news. I created a small test-case that submit a request every time bigger and I've been able to reproduce the problem. The strange thing is that the more logs I add the more loops are performed without errors. It makes me think that is something related to the data sent from apache to

Re: [Mono-dev] Heads up: Elimination of the 2.0 and 4.0 profiles

2014-10-23 Thread xplicit
Miguel de Icaza-6 wrote We are going to remove the build for the .NET 2.0 APIs from Mono which are currently provided for bug/feature-compatibility for .NET 2.0 applications. Will you save .NET 3.5 or you are going to remove corlib 2.0 at all? Removing 2.0 profile is a good thing, but without

Re: [Mono-list] Problems using RelaxngValidatingReader (c#)

2014-10-23 Thread Atsushi Eno
Hello, An element has to contain one ore more pattern, https://www.oasis-open.org/committees/relax-ng/spec.html#full-syntax which is missing in your element name='book'/element. Specify empty/ there. Atsushi Eno On 2014年10月21日 15:15, Jesper Lund Stocholm wrote: I am trying to use the

Re: [Mono-list] Problems using RelaxngValidatingReader (c#)

2014-10-23 Thread Jesper Lund Stocholm
Hi Atsushi, Thank you for your reply. I finally got it to work. Now, I have tried to do make an RNC-equivalent to the RNG-schema I made. The RNC-schemas is this: element library { element book { attribute id {xsd:ID}, attribute available {xsd:boolean}, element isbn {token -

Re: [Mono-list] Problems using RelaxngValidatingReader (c#)

2014-10-23 Thread Atsushi Eno
Phew, there was a bug! It was about handling default namespace. I fixed it in master. https://github.com/mono/mono/commit/3d9a2b7 Until you get the fixed version, a workaround is to put explicit declaration on top: default namespace = Atsushi Eno On 2014年10月24日 06:14, Jesper Lund Stocholm