[Mono-dev] Bug : ASP.NET ListBox attributes not completely rendered

2005-10-12 Thread gillestemail-mono
Hello, I'm struggling with a bothering bug with Mono 1.1.9.2 under FC4. Here is this tag : asp:ListBox id=myListBox runat=server CssClass=MaxWidth Rows=9 AutoPostBack=True SelectionMode=Single / The result is : select name=myListBox size=9 The expected result should be (under Mono 1.1.8.3

[Mono-dev] problem compiling mono-1.1.9 for arm

2005-10-12 Thread FALE(Leopold Faschalek)
Hi, while compiling mono-1.1.9 I get following error: Making all in profiler make[3]: Entering directory `/home/fale/mono-1.1.9/mono/profiler' /bin/sh ../../libtool --tag=CC --mode=link gcc -g -O2 -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations

Re: [Mono-dev] Remothing through HTTPS

2005-10-12 Thread Yngve Zackrisson
On Tue, 2005-10-11 at 21:29, Sebastien Pouliot wrote: Hello Yngve, On Mon, 2005-10-10 at 11:17 +0200, Yngve Zackrisson wrote: Hallo Sebastien, Great news! I have got HTTPS working through .NET Remoting with Win32 MS .NET on the client side and Linux Mono on the server side.

[Mono-dev] Memory leaks and segfaults

2005-10-12 Thread Thorsten Schuett
Hi, I sent a mail to this list in September regarding a memory leak on IA64. Back then the problem wasn't solved, but the machine had enough memory to survive. This week the problem became worse. mono segfaults! VS 2005 Beta: The simulation runs fine and the memory consumption reported by the

Re: [Mono-dev] Memory leaks and segfaults

2005-10-12 Thread Kornél Pál
Hi, Please attach the source code of a test case that causes this leak. If you use the same binary on all platfroms please include that binary as well to can identify a possible compiler bug. Kornél - Original Message - From: Thorsten Schuett [EMAIL PROTECTED] To:

Re: [Mono-dev] Memory leaks and segfaults

2005-10-12 Thread Thorsten Schuett
On Wednesday 12 October 2005 13:30, you wrote: Hi, Please attach the source code of a test case that causes this leak The simulator is about 6000 lines of C# code. I don't think, that I can break it down into a small test case. But I can certainly send you the code. I just don't want to send

Re: [Mono-dev] Memory leaks and segfaults

2005-10-12 Thread Paolo Molaro
On 10/12/05 Thorsten Schuett wrote: IA32 mono 1.1.9.2: The consumed memory goes up to ~1GB and then mono segfaults. The core dump contained more information this time: The backtrace had 150k lines. Therefore I post only a small subset ;-) A very long backtrace would point to excessive

Re: [Mono-dev] problem compiling mono-1.1.9 for arm

2005-10-12 Thread Paolo Molaro
On 10/12/05 FALE(Leopold Faschalek) wrote: while compiling mono-1.1.9 I get following error: Making all in profiler make[3]: Entering directory `/home/fale/mono-1.1.9/mono/profiler' /bin/sh ../../libtool --tag=CC --mode=link gcc -g -O2 -fno-strict-aliasing -g -Wall -Wunused

Re: [Mono-dev] building for Mono under msbuild

2005-10-12 Thread Marek Sieradzki
Dnia 11-10-2005, wto o godzinie 11:49 -0700, Andy Waddell napisał(a): I have an application that needs to run under both .NET and Mono and I came up with a pretty simple way to get MS DevStudio to build both. I don’t know how others have solved this problem, but I thought I would offer it up

[Mono-dev] System.Type.GetTypeCode null arg failure

2005-10-12 Thread Mike Welham
I tried repeatedly to file this in bugzilla, but she was having none of it. Description of Problem: --- System.Type.GetTypeCode(Type) throws a NullRef exception when its arg is null. Microsoft's implementation returns TypeCode.Empty Steps to reproduce the problem:

Re: [Mono-dev] [Patch] Avoid creating version in AssemblyName ctor

2005-10-12 Thread Zoltan Varga
Hi, I think this is ok to check in. Zoltan On 10/6/05, Carlos Alberto Cortez [EMAIL PROTECTED] wrote: Hey, The attached patch adds a param to mono_assembly_name_parse_full, which lets us avoid creating 'version' if it wasn't defined. This helps us

[Mono-dev] DataGrid Control : doPostBack script not emited

2005-10-12 Thread Yogendra Thakur
Hi Gonzalo, __doPostBackScript Script is not rendered in page, if no comand Column is Visible. Microsoft implementation emits this script, even if Command Column is hidden. Many developer use __doPostBack function call and ItemCommand event to extend DataGrid functionality. Also DataGridItem

Re: [Mono-dev] Memory leaks and segfaults

2005-10-12 Thread Zoltan Varga
Hi, It seems out-of-memory handling on ia64 seems to be broken. I will try to fix it. Zoltan On 10/12/05, Thorsten Schuett [EMAIL PROTECTED] wrote: Hi, I sent a mail to this list in September regarding a memory leak on IA64. Back then the problem

[Mono-dev] Re: DataGrid Control : doPostBack script not emited

2005-10-12 Thread Gonzalo Paniagua Javier
On Wed, 2005-10-12 at 18:08 -0400, Yogendra Thakur wrote: Hi Gonzalo, __doPostBackScript Script is not rendered in page, if no comand Column is Visible. Microsoft implementation emits this script, even if Command Column is hidden. Many developer use __doPostBack function call and