Re: [Mono-dev] Re: [Mono-devel-list] Initial ARM JIT port in svn

2005-08-09 Thread Paul F. Johnson
Hi, I have no interest or plans to do a PocketPC port myself (if I had a pda I'd run a useful operating system on it, like Linux). Sure... Linux runs on every PDA out there That's not quite true - there are some that it refuses to run on due to problems with the interface and pointing

Re: [Mono-dev] DateTime.Parse difference with .NET

2005-08-09 Thread Alfredo Jose Muela Romero
Hello, El Tue, 09 Aug 2005 13:30:19 +0900 Atsushi Eno [EMAIL PROTECTED] escribió: Hello, [...] In fact using DateTime.Parse() is somewhat stupid ;-) Read here: http://msdn.microsoft.com/msdnmag/issues/05/03/CultureInfo/default .aspx?side=true#a The

Re: [Mono-dev] DateTime.Parse difference with .NET

2005-08-09 Thread Atsushi Eno
Hi, Now that it turned out that the bug is not reproducible with the latest svn HEAD (i.e. the bug report is invalid)... Alfredo Jose Muela Romero wrote: Hello, El Tue, 09 Aug 2005 13:30:19 +0900 Atsushi Eno [EMAIL PROTECTED] escribió: Hello, [...] In fact using

Re: [Mono-dev] DateTime.Parse difference with .NET

2005-08-09 Thread Atsushi Eno
Hi, Alfredo Jose Muela Romero wrote: El Tue, 09 Aug 2005 19:01:32 +0900 Atsushi Eno [EMAIL PROTECTED] escribió: Hi, Now that it turned out that the bug is not reproducible with the latest svn HEAD (i.e. the bug report is invalid)... Which bug? Did I talk to any bug? :-S If I did

Re: [Mono-dev] DateTime.Parse difference with .NET

2005-08-09 Thread Alfredo Jose Muela Romero
El Tue, 09 Aug 2005 20:13:09 +0900 Atsushi Eno [EMAIL PROTECTED] escribió: Hi, Alfredo Jose Muela Romero wrote: El Tue, 09 Aug 2005 19:01:32 +0900 Atsushi Eno [EMAIL PROTECTED] escribió: Hi, Now that it turned out that the bug is not reproducible with the latest svn HEAD (i.e.

[Mono-dev] Re: [Mono-devel-list] USE_MMAP speed/time tradeoff

2005-08-09 Thread Gonzalo Paniagua Javier
On Sun, 2005-08-07 at 00:14 +0200, Michal Moskal wrote: Also, Gonzalo was trying to work on the large file upload setup, which has better solutions (buffering to files, like is done in Whidbey). large file upload? I don't get it. When POSTing anything big to a ASP.NET page or web

RE: [Mono-dev] not implemented destructor in FontNameConverter

2005-08-09 Thread Andrew Skiba
As a temporary solution I committed TARGET_JVM so that this destructor will not be present in our build, but probably it's worth to do same for Mono, too. I wonder, what was the need to throw NotImplementedException in FontNameConverter destructor? What will do GC when destructor fails in

[Mono-dev] Re: [Mono-devel-list] Initial ARM JIT port in svn

2005-08-09 Thread Hugo Ferreira
Mr Paolo, I've demanded anything here?? Your message just showed the kind of person I'm dealing with. No need for comments. We'll continue in private and save the list from this things... Hugo Ferreira On 08/09/05 Paolo Molaro wrote: On 08/09/05 Hugo Ferreira wrote: Sure... Linux runs on

[Mono-dev] Re: [Mono-devel-list] Initial ARM JIT port in svn

2005-08-09 Thread Paolo Molaro
On 08/08/05 Paul F. Johnson wrote: The same goes for a Symbian or RISC OS port. Problem is that for RISC OS, they don't have dynamic linking support as yet (though the RISC OS gcc is getting there). There would also have to be a different layer between SWF and the desktop as it's not

Re: [Mono-dev] not implemented destructor in FontNameConverter

2005-08-09 Thread Miguel de Icaza
Hello, I wonder, what was the need to throw NotImplementedException in FontNameConverter destructor? What will do GC when destructor fails in such way? The code is in FontConverter.cs:283 It seems like code that was originally just stubbed out and not completed. Thanks for pointing this out,

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Kornél Pál
System.Runtime.InteropServices._CustomAttributeBuilder is missing form .NET Framework 1.1 RTM but is in SP1 and is included with NET_1_1. This is true for System.Web.HttpResponse.TransmitFile as well and it is included in NET_1_1. I think including serivce pack extensions in Mono is the best

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello Gert, I don't recall if it existed in .NET 1.1, but it does exist in .NET 1.1 SP1. I just installed .NET 1.1 SP1 (after much pain) and wrote a simple program: using System; using System.Reflection.Emit; class X { static void Main () { Type t = typeof

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Michael Hutchinson
Hi! Note that none of the interfaces starting with _ in System.Runtime.InteropServices are present in the RTM version of 1.1 but are in SP1. There may be other differences. So metadata comparsion should be done on SP1 assemblies rather than on RTM. I am very confused. What does `RTM'

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello, You couldn't. I managed to find a document confirming that these interfaces were indeed introduced in .NET 1.1 SP1 : http://www.usysware.com/blog/?p=21 Microsoft's own documentation on MSDN2 says that these first appear in NET 2.0, but I think they're just hiding that there isn't

[Mono-dev] [Patch] AssemblyName ctor

2005-08-09 Thread Carlos Alberto Cortez
hey, Currently the AssemblyName (string) ctor is not implemented to receive the long format assembly name (such MyAssembly, Version=1.2,...). The attached patch adds support for it. Some tests are also attached. Carlos. Index: icall.c

[Mono-dev] [Patch] AssemblyName ctor (correction)

2005-08-09 Thread Carlos Alberto Cortez
In the last message some attachments were missing. All of them are now correctly attached. Index: AssemblyName.cs === --- AssemblyName.cs (revisión: 48211) +++ AssemblyName.cs (copia de trabajo) @@ -37,6 +37,7 @@ using System.Text;

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Jeroen Frijters
Miguel de Icaza wrote: Type t = typeof (CustomAttributeBuilder); Console.WriteLine (t.BaseType); And it does not display anything. When compiled with csc 8, it does display _CustomAttributeBuilder. Huh? _CustomAttributeBuilder is an interface, so it obviously

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello, Type t = typeof (CustomAttributeBuilder); Console.WriteLine (t.BaseType); And it does not display anything. When compiled with csc 8, it does display _CustomAttributeBuilder. Huh? _CustomAttributeBuilder is an interface, so it obviously won't show

[Mono-list] mkbundle and wapi

2005-08-09 Thread Matthijs ter Woord
Hi, When i use mkbundle to make a standalone version of my .NET app, it works fine locally (running as root), but when i run it on my ISP's server, i get errors about mono being unable to write to the ~/.wapi directory. This is correct, the home directory of my account is readonly. Is there a

[Mono-list] Re: mkbundle and wapi

2005-08-09 Thread Robert Jordan
Matthijs, When i use mkbundle to make a standalone version of my .NET app, it works fine locally (running as root), but when i run it on my ISP's server, i get errors about mono being unable to write to the ~/.wapi directory. This is correct, the home directory of my account is readonly. Is

[Mono-list] SetHandler not working for mod-mono ?

2005-08-09 Thread bdr
Hi, all, I'm running Apache 2 on SuSE Linux 9.0 and I'm trying to make mod_mono work. I have already had succes with it on SuSE 9.3. However, somehow on the 9.0 the handler seems to be bypassed. When I request a page index.aspx, I get the content of the file, not the result of the

Re: [Mono-list] Request-Error

2005-08-09 Thread Gonzalo Paniagua Javier
On Sat, 2005-08-06 at 12:57 +0200, Jan Waiz wrote: In an aspx-File i receive in the Page_Load via this.Request.QueryString[“ID”]; a Paramter without any Problem. When trying to call an other aspx-File via: this.Response.Redirect( “MyForm.aspx” ); I got an Runtime-Error: A potentially

Re: [Mono-list] SetHandler not working for mod-mono ?

2005-08-09 Thread Gonzalo Paniagua Javier
On Tue, 2005-08-09 at 11:11 +0200, [EMAIL PROTECTED] wrote: Alias /aspnet /usr/share/doc/xsp/test MonoApplications /aspnet:/usr/share/doc/xsp/test Directory /usr/share/doc/xsp/test SetHandler mono DirectoryIndex index.aspx Order allow,deny Allow from all

[Mono-list] Problems inserting a row in Oracle wi th an spanish character like 'Ñ'

2005-08-09 Thread Alex Lopez Garcia
Hi,     I am trying to insert a row with characters like Ñ in Oracle , but the Ñ doesnt appear in the row. In his place appears a ?. When I run the sentence in SQLWorksheet Plus I have no problem. Anybody can help me, please?.     This is the SQL command : INSERT

Re: [Mono-list] SetHandler not working for mod-mono ?

2005-08-09 Thread bdr
I have also tried that, no improvement on the situation Regards, Bert De Ridder PeopleWare NV - Head Office Cdt.Weynsstraat 85 B-2660 Hoboken Tel: +32 3 448.33.38 Fax: +32 3 448.32.66 PeopleWare NV - Branch Office Geel Kleinhoefstraat 5 B-2440 Geel Tel: +32 14 57.00.90 Fax: +32 14

Re: [Mono-list] Mono port to other OS

2005-08-09 Thread Paolo Molaro
On 08/09/05 Thomas Krause wrote: Assuming I would want to port Mono to another OS platform, what would I need to do / implement exactly? Depends which OS you're talking about and whether the jit already works on the same kind of cpu. I know that the SSCLI (Rotor) from Microsoft has a PAL

Re: [Mono-list] Mono port to other OS

2005-08-09 Thread Miguel de Icaza
Hello, The toplevel README file in the mono module has the directory structure explained. The docs/ directory contains some files that may be useful, too. I have added the contents of this post to the Porting page in the Mono Wiki. Or is there a good book about Mono that covers the

Re: [Mono-list] (no subject)

2005-08-09 Thread Miguel de Icaza
Hello, I have just recently completed a site for a client using Mono/XSP. The client is Neoware (http://www.neoware.com), they are the #2 thin client provider in the world right a head of HP. IBM distributes their products on IBM's website. So they are no small company. I replaced

[Mono-list] Problem with prj2make

2005-08-09 Thread Jesse Pasichnyk
Hi, Im trying to convert a Visual Studio.NET 2003 project file to a Makefile. Im getting the following error. [EMAIL PROTECTED] ~/site/ASPX]# prj2make RMA.csproj Error running pkg-config. Check the above output. Any help would be appreciated. Currently Ive been running

Re: [Mono-list] mod_mono RedHat 9

2005-08-09 Thread Wade Berrier
On Thu, 2005-07-28 at 21:11 -0700, Dilton McGowan II wrote: I get this: Starting httpd: Syntax error on line 1052 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/modules/mod_mono.so into server: /etc/httpd/modules/mod_m ono.so: undefined symbol: apr_socket_send What's the best way

[Mono-list] ByteFX and Mysql User Authentication

2005-08-09 Thread Jonathan J. Vargas R.
Hi, I am having problems when i try to connect to MySQL using ByteFX, i receive a message saying that client is trying to use an old authentication. Though, i configured MySQL to use old-password format, but the current accounts in MySQL are using the secure password format. Is there a way to

RE: [Mono-list] Mono port to other OS

2005-08-09 Thread Thomas Krause
Thank you very much, I'm talking about x86 architecture, so that should not be the problem. The os I was referring to is my own little project. It is basically an OS that is completely based on .NET (except the kernel itself of course). You could call it Mono OS. This architecture makes some

RE: [Mono-list] (no subject)

2005-08-09 Thread Nick Berardi
I personally see no problem with show casing the site. Let me know what you need and anything I can do. Nick -Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 09, 2005 2:05 PM To: Nick Berardi; Erik Dasque Cc: mono-list@ximian.com Subject: Re:

[Mono-list] mcs compiler options

2005-08-09 Thread Marcus
When invoking mcs, I have noticed that non-csc variants of options, such as -o instead of -out: now produce a warning. Is there a timeline for eliminating those old-style options from mcs? ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] Missing Feature...

2005-08-09 Thread tsureshkumar
Jan Waiz wrote: When trying to call “Datareader.HasRows” I got a Runtime-Error The requested feature is not implemented: System.Data.Odbc.OdbcDataReader:get_HasRows () How can I check, if a DataReader will have Rows or not? yes, the requested feature is not yet implemented. HasRows

[Mono-list] Re: Mono port to other OS

2005-08-09 Thread IT2003_1: Morenz, Tino
When porting mono, two things are important: *) if the jit has been ported to the wanted cpu *) if the os supports a correct implementation of POSIX/pthreads If both conditions are true, you'll likely need only small tweaks to the configure files and maybe the signal handling mechanism, this