Re: [Mono-dev] Controls within a control in ASP.NET

2008-08-25 Thread Petit Eric
2008/8/25 Wael Zeenni [EMAIL PROTECTED]: Dear Eric, Thanks for the response. I ran the ComponentArt DLL through the MoMA and everything turned out fine. There were no PInvokes and no missing Mono functionality. As to where the error is coming up, I know exactly where it's happening. I

Re: [Mono-dev] Controls within a control in ASP.NET

2008-08-25 Thread Marek Habersack
On Mon, 25 Aug 2008 02:17:32 -0400 Wael Zeenni [EMAIL PROTECTED] wrote: Dear Eric, Thanks for the response. I ran the ComponentArt DLL through the MoMA and everything turned out fine. There were no PInvokes and no missing Mono functionality. As to where the error is coming

[Mono-dev] Embedded mono: first on disk dynamic assembly stays locked, while others do not.

2008-08-25 Thread BaSS
Hi Guys, I'm using the mono embedding API and I'm using a construction like this: 1) Setup Mono (2.0 beta or 1.9.1) 2) Load main Assembly 3) Create the script compiler object from the main assembly 4) Invoke the managed scriptcompiler with a script(string) and have the assembly written to disk

Re: [Mono-dev] Embedded mono: first on disk dynamic assembly stays locked, while others do not.

2008-08-25 Thread Robert Jordan
BaSS wrote: Hi Guys, I'm using the mono embedding API and I'm using a construction like this: 1) Setup Mono (2.0 beta or 1.9.1) 2) Load main Assembly 3) Create the script compiler object from the main assembly 4) Invoke the managed scriptcompiler with a script(string) and have the

Re: [Mono-dev] Embedded mono: first on disk dynamic assembly stays locked, while others do not.

2008-08-25 Thread BaSS
Thanks for you answers Robert, please see my replies below: -Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Robert Jordan Sent: Monday, August 25, 2008 20:38 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Embedded

Re: [Mono-dev] Embedded mono: first on disk dynamic assembly stays locked, while others do not.

2008-08-25 Thread Robert Jordan
Hi, BaSS wrote: I'm using the mono embedding API and I'm using a construction like this: 1) Setup Mono (2.0 beta or 1.9.1) 2) Load main Assembly 3) Create the script compiler object from the main assembly 4) Invoke the managed scriptcompiler with a script(string) and have the assembly

Re: [Mono-dev] Embedded mono: first on disk dynamic assembly stays locked, while others do not.

2008-08-25 Thread BaSS
Robert, awesome that it actually exposed a bug, I'm too new to mono to be sure that its not me, so thank you for actually reproducing it and posting the bug report. Loading all the created script assemblies into the root domain would cause a huge memory consumption over time since I cannot

[Mono-dev] VBCodeProvider always returns VBNC_CRASH under mono 2.0 beta preview used through the embedding API

2008-08-25 Thread BaSS
Hi Guys, When using the VBCodeProvider to compile a very simple Hello World script through the embedding API mono version 2.0 beta preview, it always returns VBNC_CRASH in the errors. The CSharpCodeProvider works. Using mono 1.9.1 the VBCodeProvider works as expected. (tested on windows).

Re: [Mono-dev] When passing managed array of COM object references (Marshaled as UnmanagedType.LPArray) to native Code, expected native COM ptrs are invalid.

2008-08-25 Thread Jonathan Chambers
Hello, Please file a bug and I will take a look at this. Thanks, Jonathan On Sat, Aug 16, 2008 at 6:46 AM, Ivan N. Zlatev [EMAIL PROTECTED] wrote: On Fri, Aug 15, 2008 at 2:43 AM, Tom Hindle [EMAIL PROTECTED] wrote: Hi, When passing managed array of COM object references

[Mono-list] Checking for valid assembly signature

2008-08-25 Thread paszczi
Hello, I have just faced a problem for which I cannot find the solution. My app has a plugin architecture, during app startup all plugins all loaded. However, I want to be able to somehow verify whether plugin comes from trusted source. So I thought of assembly signing, however I couldn't find

Re: [Mono-list] New open source .NET project proposal

2008-08-25 Thread Petit Eric
2008/8/19 Miguel de Icaza [EMAIL PROTECTED]: Is there something missing to see it at Not much; Just tell me what text you would like in there. http://mono-project.com/OpenSUSE_Build_Service ? Hi Miguel, please, can you add MonoOSC in the list of software here :

Re: [Mono-list] Error while compiling mono from SVN in cygwin

2008-08-25 Thread Andrus
Ken, - From the looks of things you still have a problem with line endings. Look at the line in the error message ': No such file or directorydirectory `/cygdrive/c/mono Note that the backtick character is at the beginning of the line - this means you have an errant line ending in your

Re: [Mono-list] Error while compiling mono from SVN in cygwin

2008-08-25 Thread Andrus
Robert ja Gert, Downgrade cygwin's `make' from here: http://www.go-mono.com/archive/helper/make-3.80-1.tar.bz2 It's documented on http://www.mono-project.com/Compiling_Mono. Thank you. I did it and read this page. Now make exits with error make[6]: execvp: mcs: Permission denied I tried

Re: [Mono-list] Error while compiling mono from SVN in cygwin

2008-08-25 Thread Robert Jordan
Andrus wrote: Robert ja Gert, Downgrade cygwin's `make' from here: http://www.go-mono.com/archive/helper/make-3.80-1.tar.bz2 It's documented on http://www.mono-project.com/Compiling_Mono. Thank you. I did it and read this page. Now make exits with error make[6]: execvp: mcs:

Re: [Mono-list] Error while compiling mono from SVN in cygwin

2008-08-25 Thread Robert McWilliam
On Sun, Aug 24, 2008 at 11:30:30PM +0300, Andrus wrote: - From the looks of things you still have a problem with line endings. Look at the line in the error message ': No such file or directorydirectory `/cygdrive/c/mono Note that the backtick character is at the beginning of the

Re: [Mono-list] Checking for valid assembly signature

2008-08-25 Thread Sebastien Pouliot
On Mon, 2008-08-25 at 10:17 +0200, paszczi wrote: Hello, I have just faced a problem for which I cannot find the solution. My app has a plugin architecture, during app startup all plugins all loaded. However, I want to be able to somehow verify whether plugin comes from trusted source. So I

Re: [Mono-list] Error while compiling mono from SVN in cygwin

2008-08-25 Thread Andrus
Robert, Is c:\mono\bin still in your path? Are you able to call mcs from the shell you're using to compile mono? Thank you. I fixed it. During make install when console shows MONO_PATH=../../class/lib/net_1_1_bootstrap;$MONO_PATH /mono/svn/mono/runtime/ mono-wrapper

Re: [Mono-list] Checking for valid assembly signature

2008-08-25 Thread Robert Jordan
paszczi wrote: Hello, I have just faced a problem for which I cannot find the solution. My app has a plugin architecture, during app startup all plugins all loaded. However, I want to be able to somehow verify whether plugin comes from trusted source. So I thought of assembly signing,

[Mono-list] Using CSharpCodeProvider in Mono

2008-08-25 Thread Paulo Aboim Pinto
Hello, I'm developing an application that will run in a Windows box in Linux box and we have a method to Evaluating Expressions and for that I'm using the CSharpCodeProvider to create a dynamic method to return the value of the math expression. In windows, this works fine but in linux I got the

[Mono-list] Marshaling on Mac

2008-08-25 Thread silver83
I am calling a Carbon MAC OS X API function using p/invoke : [DllImport(/System/Library/Frameworks/Carbon.framework/Versions/Current/Carbon, CharSet = CharSet.Ansi)] internal static extern int FSGetVolumeInfo( short volume,

Re: [Mono-list] Using CSharpCodeProvider in Mono

2008-08-25 Thread Robert Jordan
Paulo Aboim Pinto wrote: cp.OutputAssembly = Module; The module name must end with .dll or .exe. Please file a bug at http://mono-project.com/Bugs. Robert ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] Marshaling on Mac

2008-08-25 Thread Robert Jordan
silver83 wrote: *** Question number 1 : Why do I have to explicitly tell it the struct layout, it is pretty obviouse here isn't it ? shouldn't this just be simple blitting ? is it because of the fact that this is a struct being used under another struct ? No. It's because UTCDateTime is

Re: [Mono-list] Support for RelaxNG compact syntax

2008-08-25 Thread Atsushi Eno
Hello, I was trying to parse a RelaxNG compact syntax. It worked very well until I had to use the external keyword. It always tries to parse the external file as the verbose syntax. When I use the verbose syntax for the external file, it works well. Oops, that was lack of external file

[Mono-list] strange message using SiteMapPath control ASP.NET

2008-08-25 Thread Rolando Martinez
Hi, The last weeks I've running my site using xsp2 on my webapp folder, but now when I tried to do the same using the mod_mono with Apache, I will be able of install it on Ubuntu BUT I got a strange message with my SiteMapPath Control, this is the message on my web page: Skip Navigation Links Skip

[Mono-list] upgrading to mono 1.9 fails Error: Missing Dependency: libexif.so.9 is needed by package libgdiplus0

2008-08-25 Thread javier fernandez
Hello, I have mono version (1.2.4 ) installed on fedora 8 and I want to upgrade to mono version ( 1.9 ). My attempt to upgrade using yum upgrade mono-core failed with the following dependency error: Error: Missing Dependency: libexif.so.9 is needed by package libgdiplus0 I checked the version