Re: [Mono-dev] Building Mono on Linux/Alpha

2006-06-30 Thread Sergey Tikhonov
Zoltan Varga wrote: >Hi, > > Exception support requires implementing: > - the opcodes like throw, start_handler, endfinally > - the functions in exceptions-.c > - mono_arch_emit_exceptions (). > > As usual, the best documentation is the code of the

[Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Janne Rantala
Hi,I created simple web service client which tries to access net.xmethods.www.CurrencyExchangeService. Assembly is created with Visual Studio 2005 and it works fine in that environment. When I try to initialize client from embedded Mono, I got this error stating that SendOrPostCallback could not be

Re: [Mono-dev] Building Mono on Linux/Alpha

2006-06-30 Thread Zoltan Varga
Hi, You need to implement LMF support for handling exceptions thrown from unmanaged code. As for posting your code, the sooner the better :). Zoltan On 6/30/06, Sergey Tikhonov <[EMAIL PROTECTED]> wrote: > Zoltan Varga wrote: > > >

[Mono-dev] Monodevelop, gtk# etc

2006-06-30 Thread Paul
Hey all, Just wondering can anyone help me out with a few questions. 1. I'm looking for books/resources on development with monodevelop. I have found a few resources online but would appreciate more especially todo with stetic and the newest monodevelop. 2. I want to look into developing front-end

[Mono-dev] Patch for System.Net.Dns.GetHostAddresses

2006-06-30 Thread Petri Latvala
MSDN says GetHostAddresses doesn't query DNS if given an IP address, but simply constructs an IPAddress array and returns it. Mono's implementation queries DNS to find the names for the IP, then discards them, and returns an array of IPAddress. Here's a patch to not query when given an IP, and a te

[Mono-dev] Preview of the release notes.

2006-06-30 Thread Miguel de Icaza
Hello folks, The preview for the release notes of Mono 1.1.16 is available here: www.go-mono.com/archive/1.1.16 It is still missing a lot of information, please send your comments ;-) -- Miguel de Icaza <[EMAIL PROTECTED]> Novell, Inc. __

Re: [Mono-dev] Preview of the release notes.

2006-06-30 Thread Ympostor
Miguel de Icaza wrote: > Hello folks, > > The preview for the release notes of Mono 1.1.16 is available here: > > www.go-mono.com/archive/1.1.16 > > It is still missing a lot of information, please send your > comments ;-) > A question: will this release be available in RPMs for

Re: [Mono-dev] Preview of the release notes.

2006-06-30 Thread Miguel de Icaza
Hello, > A question: will this release be available in RPMs for SUSE 10.1? Thanks! Ah, we should set this up. I will ask Wade. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] [PATCH] Append NULL when setting StringBuilder.Length (2)

2006-06-30 Thread Kornél Pál
Hi, Is this patch OK to commit? Kornél - Original Message - From: "Kornél Pál" <[EMAIL PROTECTED]> To: Sent: Thursday, June 29, 2006 3:46 PM Subject: [PATCH] Append NULL when setting StringBuilder.Length Hi, Please review and approve the patch. Note that the current documentatio

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Miguel de Icaza
Hello, > When I try to initialize client from embedded Mono, I got this error > stating that SendOrPostCallback could not be loaded? It means that this method has not been implemented in Mono yet. Miguel ___ Mono-devel-list mailing list Mono-devel-lis

[Mono-dev] Creating DLL with ant task csc using gmcs.exe

2006-06-30 Thread Staffan Ström
Hi all! I'm trying to get ant to generate a dll using the task . I's using attribute "executable" to specify gmcs.exe. The source files compiles ok but after that I get the error message:   [csc] error CS8088: Your .NET Runtime does not support `/target:module'. Please use the latest Mono runtime

Re: [Mono-dev] Creating DLL with ant task csc using gmcs.exe

2006-06-30 Thread Kornél Pál
Hi, If you want to execute a managed executable (gmcs.exe for example) using Mono, you have to execute mono.exe. (or mono on non-Windows platforms). Otherwise it will be executed agains Microsoft .NET Framework runtime. gmcs.bat is doing this so you should use that. If it's on PATH and you sim

Re: [Mono-dev] Creating DLL with ant task csc using gmcs.exe

2006-06-30 Thread Jb Evain
Hi, On Jun 30, 2006, at 2:14 PM, Staffan Ström wrote: > Hi all! > I'm trying to get ant to generate a dll using the task . I's > using attribute "executable" to specify gmcs.exe. > The source files compiles ok but after that I get the error message: Specify the attribute: targettype="library"

Re: [Mono-dev] [Ximian-mono-list] Preview of the release notes.

2006-06-30 Thread Zoltan Varga
Hi, This release can also run IronPython 0.8 out of the box. Zoltan On 6/30/06, Miguel de Icaza <[EMAIL PROTECTED]> wrote: > Hello folks, > > The preview for the release notes of Mono 1.1.16 is available here: > > www.go-mono.com/archive/1.1.16 > > It is still missing a lot of

Re: [Mono-dev] [Ximian-mono-list] Preview of the release notes.

2006-06-30 Thread Miguel de Icaza
Hello, > This release can also run IronPython 0.8 out of the box. I guess you mean IronPython 1.0 beta 8? Miguel ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Preview of the release notes.

2006-06-30 Thread Juraj Skripsky
Hi Miguel, I've committed fixes to the following areas: ASP.NET --- Calendar, RegularExpressionValidator, url-encoding in HttpUtility and HttpRequest, changed .ascx files not being recompiled, ASP tokenizer fixes for attribute quoting in server controls, compiler error page: put messages on s

[Mono-dev] Leaking threads & tls data

2006-06-30 Thread Joachim Ante
Hi, I just submitted a fix a for mono leaking a bunch of tls data: http://bugzilla.ximian.com/show_bug.cgi?id=78739 On a related note, could some please fix http://bugzilla.ximian.com/show_bug.cgi?id=78489 Mono is leaking a thread when calling mini_cleanup. Seriously, leaking some memory - fai

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Janne Rantala
2006/6/30, Miguel de Icaza <[EMAIL PROTECTED]>: Hello,> When I try to initialize client from embedded Mono, I got this error> stating that SendOrPostCallback could not be loaded?It means that this method has not been implemented in Mono yet. MiguelHow is it possible? Few days ago I got that other e

Re: [Mono-dev] Leaking threads & tls data

2006-06-30 Thread Zoltan Varga
Hi, Since the runtime cannot be restarted after it is shut down, all these leaks occur only once in the lifetime of a process, so they are not very critical. Zoltan On 6/30/06, Joachim Ante <[EMAIL PROTECTED]> wrote: > Hi,

Re: [Mono-dev] Preview of the release notes.

2006-06-30 Thread Wade Berrier
Hi, I've created the 10.1 jail for i586 yesterday, and will do x86_64 today. After I get buildbuddy installed and configured I can build some rpms. Wade On Fri, 2006-06-30 at 08:05 -0400, Miguel de Icaza wrote: > Hello, > > > A question: will this release be available in RPMs for SUSE 10.1? Th

Re: [Mono-dev] Monodevelop, gtk# etc

2006-06-30 Thread Daniel Morgan
Dissecting a C# Application: Inside SharpDevelop http://www.apress.com/free/download_free.html You probably can get information about SharpDevelop (#D) from http://www.icsharpcode.net/OpenSource/SD/Default.aspx Mono (Developer's Notebook) by Edd Dumbill, Niel M. Bornstein You can get this b

[Mono-dev] 1.2 release?

2006-06-30 Thread Tizio Incognito
Hello folks, I'm a .Net developer, always working in a M$ environment. A customer, addicted to Linux, asked me to try to run an application of mine under mono. This application is Fx 2.0 but actually don't use very much of 2.0 libraries.. so I'd like to know, if possible, when something to run

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Rafael Teixeira
Janne and Miguel, SendOrPostCallback is a delegate type and it is implemented in Mono (in corlib), but it is defined only for the 2.0 profile, here is the source: #if NET_2_0 using System.Runtime.InteropServices; namespace System.Threading { [ComVisible (false)] public delegate

Re: [Mono-dev] Component 1

2006-06-30 Thread Rich Gilson
I'm working on porting an application at work to .NET and wanted to do it in Mono so that it could be run on both Linux and Windows, but I'm trying to figure out if there is any what to use Third-Party tools in Mono?  Or are the tools that work on Visual Studio Windows-only?  If they can be used, h

Re: [Mono-dev] 1.2 release?

2006-06-30 Thread Rafael Teixeira
Hi Tizio, inline On 6/30/06, Tizio Incognito <[EMAIL PROTECTED]> wrote: > Hello folks, > I'm a .Net developer, always working in a M$ environment. > > A customer, addicted to Linux, asked me to try to run an application of > mine under mono. This application is Fx 2.0 but actually don't use very >

Re: [Mono-dev] Component 1

2006-06-30 Thread Rafael Teixeira
The problem is, we don't know if the third-party controls/tools were developed with 100% managed and portable code, so you have to try them in Mono. Some years ago, most of the controls I tried were just wrappers to COM/ActiveX controls/components and surely those didn't run on Mono. Since I've be

[Mono-dev] genmdesc for MPC8xx

2006-06-30 Thread Matt Johnson
I'm trying to build mono/ppc for an MPC8xx.  Specifically, Freescale MPC855.   Where can I get the details I need to start building a new mono/mini/cpu-mpc8xx.md file?  I've been digging through the Freescale reference docs, but I'm afraid they are a bit beyond me.   Any help is greatly apprecia

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Robert Jordan
Janne Rantala wrote: > 2006/6/30, Miguel de Icaza <[EMAIL PROTECTED]>: >> >> Hello, >> >> > When I try to initialize client from embedded Mono, I got this error >> > stating that SendOrPostCallback could not be loaded? >> >> It means that this method has not been implemented in Mono yet. >> >> Migu

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Robert Jordan
Robert Jordan wrote: > Janne Rantala wrote: >> 2006/6/30, Miguel de Icaza <[EMAIL PROTECTED]>: >>> Hello, >>> When I try to initialize client from embedded Mono, I got this error stating that SendOrPostCallback could not be loaded? >>> It means that this method has not been implemented in

Re: [Mono-dev] Why do we need separate I18N assemblies?

2006-06-30 Thread Andreas Nahr
Hi, I think it would be worth it to try to remove the reflection overhead, because it is not just taking some time but also quite some amount of additional memory. Personally I would recommend to put the small encodings directly into corelib and the larger and seldom used ones in one or more

Re: [Mono-dev] Component 1

2006-06-30 Thread Andreas Nahr
Actually most components I know of are managed code, so they should run on mono. If you are allowed you can simply take Reflector and look at the references of your assembly and you will instantly see if the component is managed only. mfg Andreas - Original Message - From: "Rafael Tei

Re: [Mono-dev] [Ximian-mono-list] Preview of the release notes.

2006-06-30 Thread Jackson Harper
It could be mentioned that MDI works pretty well now, and that the tree is a lot faster. Also the DataGrid is much more useable now, thanks to Chris's work. Jackson On Fri, 2006-06-30 at 07:47 -0400, Miguel de Icaza wrote: > Hello folks, > > The preview for the release notes of Mono 1.1.1

Re: [Mono-dev] Why do we need separate I18N assemblies?

2006-06-30 Thread Kornél Pál
Currently I'm working on internal (already in corlib) Encodings to make the code more organized, faster and make them behave more like MS.NET. So I didn't focus on these external encodings yet. But I plan to find some more proper solution to separate the assemblies without using so much metadata

Re: [Mono-dev] Web service client - SendOrPostCallback could not be loaded

2006-06-30 Thread Janne Rantala
2006/6/30, Robert Jordan <[EMAIL PROTECTED]>: Robert Jordan wrote:> Janne Rantala wrote:>> 2006/6/30, Miguel de Icaza <[EMAIL PROTECTED]>:>>> Hello,>>> When I try to initialize client from embedded Mono, I got this error stating that SendOrPostCallback could not be loaded?>>> It means that

[Mono-dev] JaCIL: A .NET to Java Compiler Version 0.5.0.0 Released

2006-06-30 Thread Almann T. Goo
Hi everyone,in case you had any interest, after a month of work I have bundled up my efforts on JaCIL into version 0.5.0.0.  JaCIL supports about 138 instructions--a lot of the remaining ones are overflow and unsigned variants or instructions that are not usable in verifiable code. Major highlights

Re: [Mono-dev] Why do we need separate I18N assemblies?

2006-06-30 Thread Andreas Nahr
b meant Option b) from above - the Globalization. If you look at the profile you will see that a simple Console.WriteLine ("A") results in the usage/compilation of the Globalization classes. This is very likely from a bug in the code like comparing two non-cultural-aware strings (are there any

Re: [Mono-dev] JaCIL: A .NET to Java Compiler Version 0.5.0.0 Released

2006-06-30 Thread Almann T. Goo
My apologies, I didn't actually put links to get at the release.The Source Forge release announcement with links to download and release notes:http://sourceforge.net/forum/forum.php?forum_id=587192 The project main page is located at:http://sourceforge.net/projects/jacilCheers,Almann-- Almann T. Go