From lenniedg at gmail.com Sat Sep 1 03:48:56 2007 From: lenniedg at gmail.com (Lennie De Villiers) Date: Sat, 1 Sep 2007 09:48:56 +0200 Subject: [Mono-list] VB.Net? Message-ID: Hi, How do I use VB.Net in Mono? is there a IDE avialable? Will SharpDevelop work? Thanks Lennie De Villiers -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070901/4fcfabe6/attachment.html From dev.info at chello.nl Sat Sep 1 11:35:26 2007 From: dev.info at chello.nl (Danny Stolle) Date: Sat, 01 Sep 2007 17:35:26 +0200 Subject: [Mono-list] Howto: Build custom events Message-ID: <46D986BE.70505@chello.nl> Hi all, this perhaps sounds really dumb, but i have some trouble writing events and raising them using C#. i have no trouble on writing classes having its methods, properties, etc. but when it comes to events, i don't know how to use them. programming in VB6, I used Microsoft back then, was easy. you declared the event you wanted, like: public event StatusOK(string message) within the class you could raise the event by using: RaiseEvent : e.g. RaiseEvent StatusOK. Now I am off VB and using C#. But can somebody please point me out to some good documentation on how to write custom events for classes and how to raise them in your apps. Thanx a lot. Danny From rook at roo.k.pl Sat Sep 1 12:14:04 2007 From: rook at roo.k.pl (=?UTF-8?B?TWljaGHFgiBaaWVtc2tp?=) Date: Sat, 01 Sep 2007 18:14:04 +0200 Subject: [Mono-list] Howto: Build custom events In-Reply-To: <46D986BE.70505@chello.nl> References: <46D986BE.70505@chello.nl> Message-ID: <46D98FCC.5090602@roo.k.pl> Hi! Basically you declare: class Foo { public delegate void SimpleDelegate(); public event SimpleDelegate TerribleEvent; protected void OnTerribleEvent() { if (TerribleEvent != null) TerribleEvent(); } } and you use OnTerribleEvent to fire the event; You connect to the event from another class by: FooInstance.TerribleEvent += MyMethodMatchingSimpleDelegateSignature(); Cheers! Micha? Ziemski Danny Stolle pisze: > Hi all, > > this perhaps sounds really dumb, but i have some trouble writing events > and raising them using C#. i have no trouble on writing classes having > its methods, properties, etc. but when it comes to events, i don't know > how to use them. > > programming in VB6, I used Microsoft back then, was easy. you declared > the event you wanted, like: public event StatusOK(string message) > within the class you could raise the event by using: RaiseEvent > : e.g. RaiseEvent StatusOK. > > Now I am off VB and using C#. But can somebody please point me out to > some good documentation on how to write custom events for classes and > how to raise them in your apps. > > Thanx a lot. > > Danny > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > From dev.info at chello.nl Sat Sep 1 12:22:05 2007 From: dev.info at chello.nl (Danny Stolle) Date: Sat, 01 Sep 2007 18:22:05 +0200 Subject: [Mono-list] Howto: Build custom events In-Reply-To: <46D986BE.70505@chello.nl> References: <46D986BE.70505@chello.nl> Message-ID: <46D991AD.2000605@chello.nl> Danny Stolle wrote: > Hi all, > > this perhaps sounds really dumb, but i have some trouble writing events > and raising them using C#. i have no trouble on writing classes having > its methods, properties, etc. but when it comes to events, i don't know > how to use them. > > programming in VB6, I used Microsoft back then, was easy. you declared > the event you wanted, like: public event StatusOK(string message) > within the class you could raise the event by using: RaiseEvent > : e.g. RaiseEvent StatusOK. > > Now I am off VB and using C#. But can somebody please point me out to > some good documentation on how to write custom events for classes and > how to raise them in your apps. > > Thanx a lot. > > Danny > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > Hi all, I have done some small research and I got it working. Actually it is quite easy; I can mail how i have done it, perhaps that would be of interest. perhaps some of you got some more tips on it. Danny From tom at opgenorth.net Sat Sep 1 17:58:24 2007 From: tom at opgenorth.net (Tom Opgenorth) Date: Sat, 1 Sep 2007 15:58:24 -0600 Subject: [Mono-list] Need tips for Mono Presentation to .NET User Group In-Reply-To: <200708090741.28301.mbd@dbc.dk> References: <6938f5390708072104j875b1a6ra101a92b658d0f6e@mail.gmail.com> <6938f5390708072105l44faf2a2l12b84da1ce5daac3@mail.gmail.com> <140160570708081315u1d6d49ach46ce61d30bb202ce@mail.gmail.com> <200708090741.28301.mbd@dbc.dk> Message-ID: <140160570709011458y140bb4ecr55321850b821cc25@mail.gmail.com> On 8/8/07, Mads Bondo Dydensborg wrote: > Do you have a copy of the roadmap handy somewhere? Sorry, forgot to reply to this earlier. Here is the Mono Project Roadmap: http://www.mono-project.com/Mono_Project_Roadmap From a.wilson82 at gmail.com Sat Sep 1 12:18:38 2007 From: a.wilson82 at gmail.com (andrew Wilson) Date: Sat, 1 Sep 2007 09:18:38 -0700 Subject: [Mono-list] Howto: Build custom events In-Reply-To: <46D986BE.70505@chello.nl> References: <46D986BE.70505@chello.nl> Message-ID: <9dbb46900709010918o1c7f2cdeh5fc95a5ac2cdd4ed@mail.gmail.com> Danny, To do this you want to read more about delegates. I found just a few articles real quick that do a good job showing you how they work. The MSDN article has some references to further reading. Enjoy. -Andrew http://www.codeproject.com/csharp/csevents01.asp http://www.akadia.com/services/dotnet_delegates_and_events.html http://msdn2.microsoft.com/en-us/library/aa645739(VS.71).aspx On 9/1/07, Danny Stolle wrote: > > Hi all, > > this perhaps sounds really dumb, but i have some trouble writing events > and raising them using C#. i have no trouble on writing classes having > its methods, properties, etc. but when it comes to events, i don't know > how to use them. > > programming in VB6, I used Microsoft back then, was easy. you declared > the event you wanted, like: public event StatusOK(string message) > within the class you could raise the event by using: RaiseEvent > : e.g. RaiseEvent StatusOK. > > Now I am off VB and using C#. But can somebody please point me out to > some good documentation on how to write custom events for classes and > how to raise them in your apps. > > Thanx a lot. > > Danny > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070901/e14c3c41/attachment-0001.html From a.wilson82 at gmail.com Sat Sep 1 12:22:23 2007 From: a.wilson82 at gmail.com (andrew Wilson) Date: Sat, 1 Sep 2007 09:22:23 -0700 Subject: [Mono-list] VB.Net? In-Reply-To: References: Message-ID: <9dbb46900709010922k53a93ddbt824d209319e4e14c@mail.gmail.com> Lennie, This is discussed here in detail. http://www.mono-project.com/VisualBasic.NET_support -A On 9/1/07, Lennie De Villiers wrote: > > Hi, > > How do I use VB.Net in Mono? is there a IDE avialable? Will SharpDevelop > work? > > Thanks > > Lennie De Villiers > > > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070901/5ac293d3/attachment-0001.html From xaviblas at gmail.com Mon Sep 3 04:14:21 2007 From: xaviblas at gmail.com (Xavi de Blas) Date: Mon, 3 Sep 2007 10:14:21 +0200 Subject: [Mono-list] bug on Mono 1.2.5 Linux gtksharpglue-2 Message-ID: <256a87490709030114q73ce7d99ja0bb6d3d6bd06e7d@mail.gmail.com> In Mono 1.2.5 Linux, there's a bug related to gtksharpglue-2. This works ok on 1.2.5 windows version. Stacktrace: Unhandled Exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: An exception was thrown by the type initializer for Gtk.Container ---> System.DllNotFoundException: gtksharpglue-2 at (wrapper managed-to-native) Gtk.Container:gtksharp_gtk_container_get_focus_child_offset () at Gtk.Container..cctor () [0x00000] --- End of inner exception stack trace --- at <0x00000> at Gtk.Bin..ctor (IntPtr raw) [0x00000] at Gtk.Window..ctor (IntPtr raw) [0x00000] at <0x00000> at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (object,object[]) at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] --- End of inner exception stack trace --- at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] at System.Reflection.MonoCMethod.Invoke (BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] at System.Activator.CreateInstance (System.Type type, BindingFlags bindingAttr, System.Reflection.Binder binder, System.Object[] args, System.Globalization.CultureInfo culture, System.Object[] activationAttributes) [0x00000] at System.Activator.CreateInstance (System.Type type, BindingFlags bindingAttr, System.Reflection.Binder binder, System.Object[] args, System.Globalization.CultureInfo culture) [0x00000] at GLib.ObjectManager.CreateObject (IntPtr raw) [0x00000] at GLib.Object.GetObject (IntPtr o, Boolean owned_ref) [0x00000] at GLib.Object.GetObject (IntPtr o) [0x00000] at Glade.XML.GetWidget (System.String name) [0x00000] at Glade.XML.BindFields (System.Object target, System.Type type) [0x00000] at Glade.XML.BindFields (System.Object target) [0x00000] at Glade.XML.Autoconnect (System.Object handler) [0x00000] at ChronoJump.createMainWindow (System.String recuperatedString) [0x00000] at ChronoJump..ctor (System.String[] args) [0x00000] at ChronoJump.Main (System.String[] args) [0x00000] Bye From anagappan at novell.com Mon Sep 3 04:12:36 2007 From: anagappan at novell.com (A Nagappan) Date: Mon, 03 Sep 2007 02:12:36 -0600 Subject: [Mono-list] contribution In-Reply-To: <358a53ca0708290714g48a4e269yd3cee09b8aa990f0@mail.gmail.com> References: <358a53ca0708290714g48a4e269yd3cee09b8aa990f0@mail.gmail.com> Message-ID: <46DC0E47.11BB.0044.0@novell.com> Hi, You can have a look at this page http://mono.ximian.com/class-status/mono-HEAD-vs-fx-2/index.html Thanks Nagappan -- -- Nagappan A Linux Desktop Testing Project - http://ldtp.freedesktop.org http://nagappanal.blogspot.com Novell, Inc. SUSE* Linux Enterprise 10 Your Linux is ready* http://www.novell.com/linux >>> On 8/29/2007 at 7:44 PM, in message <358a53ca0708290714g48a4e269yd3cee09b8aa990f0 at mail.gmail.com>, "shawn vose" wrote: > I would like to help contribute to getting the 2.0 framework fully > supported. I am looking for recommendations on what namespaces need the most > immediate attention. > > Thanks in advance From info at eulogika.net Mon Sep 3 05:48:18 2007 From: info at eulogika.net (Lorenzo Viola) Date: Mon, 03 Sep 2007 11:48:18 +0200 Subject: [Mono-list] Treeview, Mysql and databounding In-Reply-To: <46A46824.8000701@eulogika.net> References: <46A46824.8000701@eulogika.net> Message-ID: <46DBD862.10407@eulogika.net> To reply to my question, as it could be useful to some else, I found this one to work on mono also : http://aspalliance.com/822 Lorenzo Viola ha scritto: > Hello > > I'm checking for the simplest way to databind a treeview to a > hierchical ordered table that I create on a mysql server > > (the system is a debian+mysql+mono/asp.net) > > I see that I can fill a treeview from a XmlDatasource like this: > > DataFile="parameters_application.xml"> > ....etc.etc. > > I'd like to do the same from a dataset filled from Mysql database... > (On Microsoft system, there is " > I see that there is a ObjectDatasource class, but I feel that there > should be a simpler > way, instead of creating all the enumeration system... > > Or anyway a better way than creating every time a temporary xml file .... > > Thank you and Best Regards > > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > > From info at eulogika.net Mon Sep 3 05:49:47 2007 From: info at eulogika.net (Lorenzo Viola) Date: Mon, 03 Sep 2007 11:49:47 +0200 Subject: [Mono-list] Force on-the-fly recompile Message-ID: <46DBD8BB.1020907@eulogika.net> Hello On my previous apache-mod-mono installation , framework 1.1, on debian, every time I reloaded my ASP.Net pages, if the source was changed, the compilation was forced, and I could see on the fly my changes ( I have to work via ssh terminal ) Under apache2-mod-mono, framework 2.0, always on debian, this is not working anymore. I need to reload the apache2 process everytime I make a change to my sources. Is there any way to force recompile ? a web.config directive ? Many thanks From nvivo.misc at gmail.com Mon Sep 3 21:37:52 2007 From: nvivo.misc at gmail.com (Natan Vivo) Date: Mon, 3 Sep 2007 22:37:52 -0300 Subject: [Mono-list] Official Mono Repository for Ubuntu? Message-ID: Hi. I have been searching for this information on the archives, but couldn't find a definitive answer to this question. So, here it goes: Are there any plans to have an official mono repository for Ubuntu that have updated versions? I mean, really official packages, released along with the ones for Suse and RedHat, that are really updated and follow the release versions, not what we have today... The linux installer for all dists doesn't really count. It doesn't go well with a package manager. There are some repositories like badgerports, but they are for badger, and don't work well on feisty... As a long time .NET developer, I would love to develop stuff for linux using mono but right now it is easier to install it on windows and code using SharpDevelop then on my ubuntu machine. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070903/5b75254a/attachment.html From brandon at thresholdofthought.com Mon Sep 3 21:42:52 2007 From: brandon at thresholdofthought.com (Brandon Perry) Date: Mon, 03 Sep 2007 20:42:52 -0500 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: References: Message-ID: <1188870172.7967.0.camel@radiohead-laptop> If I am not mistaken, I believe getdeb has pretty up-to-date builds of mono stuff. On Mon, 2007-09-03 at 22:37 -0300, Natan Vivo wrote: > Hi. I have been searching for this information on the archives, but > couldn't find a definitive answer to this question. So, here it goes: > > Are there any plans to have an official mono repository for Ubuntu > that have updated versions? > > I mean, really official packages, released along with the ones for > Suse and RedHat, that are really updated and follow the release > versions, not what we have today... > > The linux installer for all dists doesn't really count. It doesn't go > well with a package manager. There are some repositories like > badgerports, but they are for badger, and don't work well on > feisty... > > As a long time .NET developer, I would love to develop stuff for linux > using mono but right now it is easier to install it on windows and > code using SharpDevelop then on my ubuntu machine. > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list From nvivo.misc at gmail.com Mon Sep 3 21:56:55 2007 From: nvivo.misc at gmail.com (Natan Vivo) Date: Mon, 3 Sep 2007 22:56:55 -0300 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: <1188870172.7967.0.camel@radiohead-laptop> References: <1188870172.7967.0.camel@radiohead-laptop> Message-ID: I saw getdeb, it has Monodevelop 0.15 and that's all. My source today is http://www.viraptor.info/ that has mono 1.2.5 and getdeb that has monodevelop 0.15. But those aren't official packages. viraraptor isn't even signed and is not a trustable source. =( 2007/9/3, Brandon Perry < brandon at thresholdofthought.com>: > > If I am not mistaken, I believe getdeb has pretty up-to-date builds of > mono stuff. > > On Mon, 2007-09-03 at 22:37 -0300, Natan Vivo wrote: > > Hi. I have been searching for this information on the archives, but > > couldn't find a definitive answer to this question. So, here it goes: > > > > Are there any plans to have an official mono repository for Ubuntu > > that have updated versions? > > > > I mean, really official packages, released along with the ones for > > Suse and RedHat, that are really updated and follow the release > > versions, not what we have today... > > > > The linux installer for all dists doesn't really count. It doesn't go > > well with a package manager. There are some repositories like > > badgerports, but they are for badger, and don't work well on > > feisty... > > > > As a long time .NET developer, I would love to develop stuff for linux > > using mono but right now it is easier to install it on windows and > > code using SharpDevelop then on my ubuntu machine. > > _______________________________________________ > > Mono-list maillist - Mono-list at lists.ximian.com > > http://lists.ximian.com/mailman/listinfo/mono-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070903/40d063b5/attachment.html From KHE at kmd.dk Tue Sep 4 04:57:16 2007 From: KHE at kmd.dk (Hellan.Kim KHE) Date: Tue, 4 Sep 2007 10:57:16 +0200 Subject: [Mono-list] Creating a certificate In-Reply-To: <22B92EF8DAABDA48879D5188A70FBEF602CFE13B@kmdex5.intern.kmd.dk> References: <6938f5390708232304n730348deu7d4e602eaf8b1177@mail.gmail.com><1187957566.4952.1.camel@aleph.wmmi.net><22B92EF8DAABDA48879D5188A70FBEF602CFE127@kmdex5.intern.kmd.dk><46D2D200.10208@ximian.com> <1188223274.5738.54.camel@poupou.home> <22B92EF8DAABDA48879D5188A70FBEF602CFE13B@kmdex5.intern.kmd.dk> Message-ID: <22B92EF8DAABDA48879D5188A70FBEF602CFE15B@kmdex5.intern.kmd.dk> Hi, It's been a while since I have been looking at the Mono support for creating a certificate. Last time I looked, Mono couldn't quite create the certificate that I needed. I need: A certificate signed by a CA (cert/key). Support for keyUsage, crlDistributionPoints, basicConstraints, certificatePolicies, authorityKeyIdentifier, subjectAltName, subjectKeyIdentifier extensions. What is the status on Mono at the moment... can I use the Mono.Security classes to create such a certificate? Regards, Kim From sebastien.pouliot at gmail.com Tue Sep 4 07:53:36 2007 From: sebastien.pouliot at gmail.com (Sebastien Pouliot) Date: Tue, 04 Sep 2007 07:53:36 -0400 Subject: [Mono-list] Creating a certificate In-Reply-To: <22B92EF8DAABDA48879D5188A70FBEF602CFE15B@kmdex5.intern.kmd.dk> References: <6938f5390708232304n730348deu7d4e602eaf8b1177@mail.gmail.com> <1187957566.4952.1.camel@aleph.wmmi.net> <22B92EF8DAABDA48879D5188A70FBEF602CFE127@kmdex5.intern.kmd.dk> <46D2D200.10208@ximian.com> <1188223274.5738.54.camel@poupou.home> <22B92EF8DAABDA48879D5188A70FBEF602CFE13B@kmdex5.intern.kmd.dk> <22B92EF8DAABDA48879D5188A70FBEF602CFE15B@kmdex5.intern.kmd.dk> Message-ID: <1188906816.5738.247.camel@poupou.home> Hey, On Tue, 2007-09-04 at 10:57 +0200, Hellan.Kim KHE wrote: > Hi, > > It's been a while since I have been looking at the Mono support for > creating a certificate. > Last time I looked, Mono couldn't quite create the certificate that I > needed. Nothing has changed much in Mono.Security.dll, at least with respect to certificates, for a long time. New stuff has happened, but all inside System.dll v2, so a lot more stuff and x.509 extensions are available. Sadly System.dll v2 doesn't allow you to encode certificates, only to decode them. > I need: > A certificate signed by a CA (cert/key). > Support for keyUsage, crlDistributionPoints, basicConstraints, > certificatePolicies, authorityKeyIdentifier, subjectAltName, > subjectKeyIdentifier extensions. > > What is the status on Mono at the moment... can I use the Mono.Security > classes to create such a certificate? Yes, but like before you'll need to implement yourself the extensions that aren't supported (or encoded) by Mono.Security.dll. While the design is extensible the contributions in this area didn't extend very much ;-) and Mono.Security.dll already supports what required for the .net framework/tools itself. -- Sebastien Pouliot Blog: http://pages.infinit.net/ctech/ From KHE at kmd.dk Tue Sep 4 09:43:40 2007 From: KHE at kmd.dk (Hellan.Kim KHE) Date: Tue, 4 Sep 2007 15:43:40 +0200 Subject: [Mono-list] Creating a certificate In-Reply-To: <1188906816.5738.247.camel@poupou.home> References: <6938f5390708232304n730348deu7d4e602eaf8b1177@mail.gmail.com><1187957566.4952.1.camel@aleph.wmmi.net><22B92EF8DAABDA48879D5188A70FBEF602CFE127@kmdex5.intern.kmd.dk><46D2D200.10208@ximian.com> <1188223274.5738.54.camel@poupou.home><22B92EF8DAABDA48879D5188A70FBEF602CFE13B@kmdex5.intern.kmd.dk><22B92EF8DAABDA48879D5188A70FBEF602CFE15B@kmdex5.intern.kmd.dk> <1188906816.5738.247.camel@poupou.home> Message-ID: <22B92EF8DAABDA48879D5188A70FBEF602CFE16C@kmdex5.intern.kmd.dk> Hi, I actually don't need that many extensions. Those already in the ..\Mono.Security.X509.Extension folder would do just fine. The problem is, as you mention, that they don't seem to be "finished" as most of them only got a Decode() method, but not an Encode() method. Unfortunately my knowledge about certificate encoding is too limited, to be able to complete the extension classes :( I would have preferred to use Mono, but if someone knows another way of creating certificates incl. extensions in .NET, please let me know. Regards, Kim -----Oprindelig meddelelse----- Fra: mono-list-bounces at lists.ximian.com [mailto:mono-list-bounces at lists.ximian.com] P? vegne af Sebastien Pouliot Sendt: 4. september 2007 13:54 Til: Hellan.Kim KHE Cc: Mono List Emne: Re: [Mono-list] Creating a certificate Hey, On Tue, 2007-09-04 at 10:57 +0200, Hellan.Kim KHE wrote: > Hi, > > It's been a while since I have been looking at the Mono support for > creating a certificate. > Last time I looked, Mono couldn't quite create the certificate that I > needed. Nothing has changed much in Mono.Security.dll, at least with respect to certificates, for a long time. New stuff has happened, but all inside System.dll v2, so a lot more stuff and x.509 extensions are available. Sadly System.dll v2 doesn't allow you to encode certificates, only to decode them. > I need: > A certificate signed by a CA (cert/key). > Support for keyUsage, crlDistributionPoints, basicConstraints, > certificatePolicies, authorityKeyIdentifier, subjectAltName, > subjectKeyIdentifier extensions. > > What is the status on Mono at the moment... can I use the Mono.Security > classes to create such a certificate? Yes, but like before you'll need to implement yourself the extensions that aren't supported (or encoded) by Mono.Security.dll. While the design is extensible the contributions in this area didn't extend very much ;-) and Mono.Security.dll already supports what required for the .net framework/tools itself. -- Sebastien Pouliot Blog: http://pages.infinit.net/ctech/ _______________________________________________ Mono-list maillist - Mono-list at lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list From jaimeventura at ipp.pt Tue Sep 4 10:40:25 2007 From: jaimeventura at ipp.pt (Jaime Ventura) Date: Tue, 04 Sep 2007 15:40:25 +0100 Subject: [Mono-list] Errors after update....:( Message-ID: <46DD6E59.3070405@ipp.pt> Hello. Im using centos 4 and yum repo from the mono site. After updating mono, I got the following: First, mod_mono.conf was installed on /conf.d/mod_mono.conf instead of /etc/http/conf.d/mod_mono.conf And after copying mod_mono.conf to the correct directory, now I get the following: Starting httpd: [Tue Sep 04 15:25:29 2007] [crit] The unix daemon module not initialized yet. Please make sure that your mod_mono module is loaded after the User/Group directives have been parsed. Not initializing the dashboard. [Tue Sep 04 15:25:29 2007] [crit] The unix daemon module not initialized yet. Please make sure that your mod_mono module is loaded after the User/Group directives have been parsed. Not initializing the dashboard. [ OK ] [root at webserver conf.d]# Any ideas? How can I debug this error? Is there any way to get the old files back? Thanks. Jaime From MSpencer at ndsuk.com Tue Sep 4 11:24:05 2007 From: MSpencer at ndsuk.com (Spencer, Matthew) Date: Tue, 4 Sep 2007 16:24:05 +0100 Subject: [Mono-list] Regression on arm platform in 1.2.5 Message-ID: <200DE3FF74A3DD4DB39C29B7350305056E7113@ukex07.UK.NDS.COM> Hi All I have recently updated to the 1.2.5 version of Mono for my Arm based platform. I have a simple Flickr based application that used to work and no longer does. It simply consumed more and more memory until the app crashes. Here is example code that will cause the problem: public static void Main(string[] args) { Flickr flickr=new Flickr(""); } I have tried the debugging techniques given before by Paolo (thanks for that), but I am still rather confused. The backtrace only ever goes back as far as the last c# call, so I only ever get to see the top of the stack. Any ideas how I can get to see more of the stack frame? However, the code does seem to be spending all of its time reflecting information out of the Flickr.dll. Does anyone have any ideas what might have changed to cause this problem? Cheers Matt ********************************************************************************************************* This e-mail is confidential, the property of NDS Ltd and intended for the addressee only. Any dissemination, copying or distribution of this message or any attachments by anyone other than the intended recipient is strictly prohibited. If you have received this message in error, please immediately notify the postmaster at nds.com and destroy the original message. Messages sent to and from NDS may be monitored. NDS cannot guarantee any message delivery method is secure or error-free. Information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. We do not accept responsibility for any errors or omissions in this message and/or attachment that arise as a result of transmission. You should carry out your own virus checks before opening any attachment. Any views or opinions presented are solely those of the author and do not necessarily represent those of NDS. To protect the environment please do not print this e-mail unless necessary. NDS Limited Registered office: One Heathrow Boulevard, 286 Bath Road, West Drayton, Middlesex, UB7 0DQ, United Kingdom. A company registered in England and Wales Registered no. 3080780 VAT no. GB 603 8808 40-00 ********************************************************************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070904/64f2c2d6/attachment.html From Kevin at RawFedDogs.net Tue Sep 4 11:59:47 2007 From: Kevin at RawFedDogs.net (Kevin Monceaux) Date: Tue, 4 Sep 2007 10:59:47 -0500 (CDT) Subject: [Mono-list] Login Control Focus Problem Message-ID: Fellow Mono Enthusiasts, I'm having a problem with setting focus to the UserName field on a page with a Login control. There is a master page involved, so I'm using: Page.Form.DefaultFocus = Login1.FindControl("UserName").UniqueID; In the page's Page_Load method to set the focus. If I view the page's source the UserName field looks something like: And, the AutoFocus javascript call that's being added to the page is: WebForm_AutoFocus('ctl00$MainContent$Login1$UserName'); which is passing the field's name to the AutoFocus function. On Internet Explorer, the UserName field receives focus when I go to the login page, but on Firefox it doesn't. If I try something similar with a "plain" form, one that doesn't involve a Login control, it passes the field's id instead of the field's name to the AutoFocus function and it works on both Firefox and IE. Is this a bug in Mono's implementation of the Login control? Kevin http://www.RawFedDogs.net http://www.WacoAgilityGroup.org Bruceville, TX Si hoc legere scis nimium eruditionis habes. Longum iter est per praecepta, breve et efficax per exempla!!! From xcap2000 at gmail.com Tue Sep 4 13:41:32 2007 From: xcap2000 at gmail.com (Carlos Adriano Portes) Date: Tue, 4 Sep 2007 17:41:32 +0000 Subject: [Mono-list] Mono-list Digest, Vol 29, Issue 3 In-Reply-To: References: Message-ID: <9a034090709041041w1cb9414aq994a7bafb1e7e6fa@mail.gmail.com> I tottaly agree with you. Message: 5 > Date: Mon, 3 Sep 2007 22:37:52 -0300 > From: "Natan Vivo" > Subject: [Mono-list] Official Mono Repository for Ubuntu? > To: mono-list at lists.ximian.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi. I have been searching for this information on the archives, but > couldn't > find a definitive answer to this question. So, here it goes: > > Are there any plans to have an official mono repository for Ubuntu that > have > updated versions? > > I mean, really official packages, released along with the ones for Suse > and > RedHat, that are really updated and follow the release versions, not what > we > have today... > > The linux installer for all dists doesn't really count. It doesn't go well > with a package manager. There are some repositories like badgerports, but > they are for badger, and don't work well on feisty... > > As a long time .NET developer, I would love to develop stuff for linux > using > mono but right now it is easier to install it on windows and code using > SharpDevelop then on my ubuntu machine. > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070904/e1409a25/attachment.html From miguel at novell.com Tue Sep 4 16:14:44 2007 From: miguel at novell.com (Miguel de Icaza) Date: Tue, 04 Sep 2007 16:14:44 -0400 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: References: Message-ID: <1188936884.13903.412.camel@erandi.dom> > I mean, really official packages, released along with the ones for > Suse and RedHat, that are really updated and follow the release > versions, not what we have today... We currently do not have plans; Ubuntu seems to have some pretty good up to date packages though. > As a long time .NET developer, I would love to develop stuff for linux > using mono but right now it is easier to install it on windows and > code using SharpDevelop then on my ubuntu machine. You could try OpenSUSE :-) Miguel. From daniel.soto2k at gmail.com Tue Sep 4 16:28:49 2007 From: daniel.soto2k at gmail.com (Daniel Soto) Date: Tue, 4 Sep 2007 16:28:49 -0400 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: <1188936884.13903.412.camel@erandi.dom> References: <1188936884.13903.412.camel@erandi.dom> Message-ID: <72e874f00709041328y56ce619ewd4ea191af94671@mail.gmail.com> > Ubuntu seems to have some pretty good up to date packages though. Yes, but Ubuntu does not update mono packages until a new release appears. For example, Mono 1.2.4 will be not available in Ubuntu until 7.10 (Gutsy Gibbons). Look at packages.ubuntu.com to view that mono packages are available only in Gutsy Gibbons. The current version of Ubuntu, Feisty Fawn, does not update mono 1.2.3 to 1.2.4. Best regards. 2007/9/4, Miguel de Icaza : > > > > I mean, really official packages, released along with the ones for > > Suse and RedHat, that are really updated and follow the release > > versions, not what we have today... > > We currently do not have plans; Ubuntu seems to have some pretty good > up to date packages though. > > > As a long time .NET developer, I would love to develop stuff for linux > > using mono but right now it is easier to install it on windows and > > code using SharpDevelop then on my ubuntu machine. > > You could try OpenSUSE :-) > > Miguel. > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070904/1823b7da/attachment.html From xcap2000 at gmail.com Tue Sep 4 16:29:59 2007 From: xcap2000 at gmail.com (Carlos Adriano Portes) Date: Tue, 4 Sep 2007 17:29:59 -0300 Subject: [Mono-list] Official Mono Repository for Ubuntu? Message-ID: <9a034090709041329o65ab02e3xf25ac8ca29ddf562@mail.gmail.com> Ubuntu is a much better choice than opensuse, I am not here to discuss wich is better but I totally agree with my friend and like to have official packages to ubuntu, I use dapper wich is very stable and tried Sled 10.1, and even extracting files from a zip file was painfull as I got a error message from the archive application, translations are not totally readable when using pt-BR and so on.... in the other hand ubuntu dapper is very stable, I could not even find a bug in it, nothing that I could see......... -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070904/774aec74/attachment.html From dev.info at chello.nl Tue Sep 4 16:37:25 2007 From: dev.info at chello.nl (Danny Stolle) Date: Tue, 04 Sep 2007 22:37:25 +0200 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: <1188936884.13903.412.camel@erandi.dom> References: <1188936884.13903.412.camel@erandi.dom> Message-ID: <46DDC205.8040900@chello.nl> Miguel de Icaza wrote: >> I mean, really official packages, released along with the ones for >> Suse and RedHat, that are really updated and follow the release >> versions, not what we have today... > > We currently do not have plans; Ubuntu seems to have some pretty good > up to date packages though. > >> As a long time .NET developer, I would love to develop stuff for linux >> using mono but right now it is easier to install it on windows and >> code using SharpDevelop then on my ubuntu machine. > > You could try OpenSUSE :-) > > Miguel. > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > Hi, I saw this posting and wanted to reply. I am currently using SusE10.1 and enthousiastic on the YAST capabilities for the first installation. But I was having some difficulties with the mono-basic package. It had dependency problems. But installing the package using commandline RPM there was no trouble at all. Even updating new packages is quite easy actually. Danny From xaviblas at gmail.com Tue Sep 4 18:04:24 2007 From: xaviblas at gmail.com (Xavi de Blas) Date: Wed, 5 Sep 2007 00:04:24 +0200 Subject: [Mono-list] How to find mono path on windows? Solved! code attached In-Reply-To: <256a87490708260913s743cf421gcef51a85b48db283@mail.gmail.com> References: <256a87490708260913s743cf421gcef51a85b48db283@mail.gmail.com> Message-ID: <256a87490709041504ob3f725fhba4a2c18d0829868@mail.gmail.com> I managed to do a Batch version using regread: http://www.robvanderwoude.com/batexamples_r.html#R i adapted it for echoing only the RegVal, and i called with this .bat: InstallChronojump.bat ----------------------------------------------------------- @echo off ::find version call regread.bat "HKEY_LOCAL_MACHINE\Software\Novell\Mono" "DefaultCLR" > temp.txt set /p version=nul del temp.txt ::find SdkInstallRoot call regread.bat "HKEY_LOCAL_MACHINE\Software\Novell\Mono\%version%" "SdkInstallRoot" > temp.txt set /p monoPath=nul del temp.txt ::Write chronojump.bat echo "%monoPath%\bin\mono.exe" "chronojump.prg" > chronojump_execute.bat ----------------------------------------------------------- This way user double click on InstallChronojump.bat and a chronojump_execute.bat is created with the correct mono path I hope ot helps From rajn at netprise.com Tue Sep 4 18:24:25 2007 From: rajn at netprise.com (Raj Nukala) Date: Tue, 4 Sep 2007 17:24:25 -0500 (CDT) Subject: [Mono-list] Mono/C Sharp Developer needed- Immediate Need Message-ID: <31168588.511188944665277.JavaMail.root@www.netprise.com> We are seeking a mono/c sharp developer for a month to two month contract to help us build/clean up the existing windows application. Skills required - C sharp - Nhibernate - log4.net - nAnt - CruiseControl.net - Expertise in working with images, and finger print scanners Expert can work remotely but we prefer someone from Philadelphia or nearby areas so we can meet personally. NDA/Non Compete is required Please send your resume to rajn(at)netprise(dot)com with your rates. --------------------------------------------------------------------------------------------------- This message and any attachments may contain confidential or privileged information and are only for the use of the intended recipient of this message. If you are not the intended recipient, please notify the sender by return email, and delete or destroy this and all copies of this message and all attachments. Any unauthorized disclosure, use, distribution, or reproduction of this message or any attachments is prohibited and may be unlawful --------------------------------------------------------------------------------------------------- From opgenorth at gmail.com Tue Sep 4 20:23:51 2007 From: opgenorth at gmail.com (Tom Opgenorth) Date: Tue, 4 Sep 2007 18:23:51 -0600 Subject: [Mono-list] Mono, Rhino.Mocks, and MbUnit Message-ID: <140160570709041723i13934a28r7003071a21ee9a27@mail.gmail.com> Hello, I tried running the est suite for Rhino.Mocks under Mono 1.2.5, using MbUnit.Cons.exe. Not to sure, but it looks like Mono doesn't like that is going on . I don't suppose that anybody has any ideas? I get an error: file reflection.c: line 9704 (resolve_object): should not be reached aborting... When I add the --verbose parameter to mono, it's a pretty big file (~ 1MB of text). The last few lines are : Method (wrapper managed-to-native) System.Reflection.MonoGenericClass:GetParentType () emitted at 03881318 to 0388135B (code length 67) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetMethods (System.Reflection.BindingFlags) emitted at 03881360 to 0388137A (code length 26) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetMethodsByName (string,System.Reflection.BindingFlags,bool,System.Type) emitted at 03881390 to 038815D6 (code length 582) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetConstructors (System.Reflection.BindingFlags) emitted at 038815D8 to 03881752 (code length 378) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.ConstructorBuilder:get_Attributes () emitted at 03881758 to 03881763 (code length 11) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetFields (System.Reflection.BindingFlags) emitted at 03881768 to 0388190D (code length 421) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetProperties (System.Reflection.BindingFlags) emitted at 03881910 to 03881AC3 (code length 435) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.MonoGenericClass:get_event_info () emitted at 03881AC8 to 03881B40 (code length 120) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.TypeBuilder:GetEvents_internal (System.Reflection.BindingFlags) emitted at 03881B58 to 03881D26 (code length 462) [domain-Rhino.Mocks.Tests.dll] Method (wrapper managed-to-native) System.Reflection.MonoGenericClass:initialize (System.Reflection.MethodInfo[],System.Reflection.ConstructorInfo[],System.Reflection.FieldInfo[],System.Reflection.PropertyInfo[],System.Reflection.EventInfo[]) emitted at 03881D38 to 03881D84 (code length 76) [domain-Rhino.Mocks.Tests.dll] Method (wrapper managed-to-native) System.Reflection.MonoGenericClass:GetCorrespondingInflatedConstructor (System.Reflection.ConstructorInfo) emitted at 03881D88 to 03881DCE (code length 70) [domain-Rhino.Mocks.Tests.dll] Method Castle.DynamicProxy.Generators.BaseProxyGenerator:EmitLoadGenricMethodArguments (Castle.DynamicProxy.Generators.Emitters.MethodEmitter,System.Reflection.MethodInfo,Castle.DynamicProxy.Generators.Emitters.SimpleAST.LocalReference) emitted at 03881DD0 to 03882097 (code length 711) [domain-Rhino.Mocks.Tests.dll] Method Castle.DynamicProxy.Generators.BaseProxyGenerator:b__0 (System.Type) emitted at 038820A8 to 038820D0 (code length 40) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.GenericTypeParameterBuilder:get_IsGenericParameter () emitted at 038820D8 to 038820E2 (code length 10) [domain-Rhino.Mocks.Tests.dll] Method System.Reflection.Emit.GenericTypeParameterBuilder:IsValueTypeImpl () emitted at 038820E8 to 03882123 (code length 59) [domain-Rhino.Mocks.Tests.dll] Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:.cctor () emitted at 038822A0 to 03882713 (code length 1139) [domain-Rhino.Mocks.Tests.dll] Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:.ctor (Castle.Core.Interceptor.IInterceptor[],object) emitted at 03882718 to 0388272F (code length 23) [domain-Rhino.Mocks.Tests.dll] Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:get_ProxyHash () emitted at 03882788 to 03882839 (code length 177) [domain-Rhino.Mocks.Tests.dll] Method Invocationget_ProxyHash_10:.ctor (IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f,Castle.Core.Interceptor.IInterceptor[],System.Type,System.Reflection.MethodInfo,object[],object) emitted at 03882850 to 0388287B (code length 43) [domain-Rhino.Mocks.Tests.dll] Method (wrapper managed-to-native) System.Object:__icall_wrapper_compile_generic_method (object,intptr,intptr,intptr) emitted at 010CE158 to 010CE1A7 (code length 79) [MbUnit.Cons.exe] GenericTypeParameterBuilder From jit at occams.info Tue Sep 4 20:25:23 2007 From: jit at occams.info (Joshua Tauberer) Date: Tue, 04 Sep 2007 20:25:23 -0400 Subject: [Mono-list] Errors after update....:( In-Reply-To: <46DD6E59.3070405@ipp.pt> References: <46DD6E59.3070405@ipp.pt> Message-ID: <46DDF773.9040300@occams.info> Jaime Ventura wrote: > Im using centos 4 and yum repo from the mono site. > > After updating mono, I got the following: > ... > Starting httpd: [Tue Sep 04 15:25:29 2007] [crit] The unix daemon module > not initialized yet. Please make sure that your mod_mono module is > loaded after the User/Group directives have been parsed. Not > initializing the dashboard. Ahha, so I'm not the only one who had their configuration in a weird order. This is a new feature from Marek. Make sure all mod_mono directives (that set up applications, etc.) are after the User and Group directives in httpd.conf. If the Mono directives are loaded in from an included configuration file, make sure the include happens after User/Group. -- - Josh Tauberer http://razor.occams.info "Yields falsehood when preceded by its quotation! Yields falsehood when preceded by its quotation!" Achilles to Tortoise (in "G?del, Escher, Bach" by Douglas Hofstadter) From nvivo.misc at gmail.com Tue Sep 4 23:14:54 2007 From: nvivo.misc at gmail.com (Natan Vivo) Date: Wed, 5 Sep 2007 00:14:54 -0300 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: <1188936884.13903.412.camel@erandi.dom> References: <1188936884.13903.412.camel@erandi.dom> Message-ID: I was afraid someone would bring OpenSuse as a better solution... But coming from Miguel almost sounds like a big "NEVER!" =) I'm really disappointed about this. I don't want to discuss about what distribution is better. But the fact is that Ubuntu is a major player today, which means that not even thinking about supporting it keeps lots of people like me testing and developing new stuff using mono. I can build mono from source, but target users won't, so I can't use the newer versions to develop anything until Ubuntu team updates it ... We have 1.2.5 and I need to wait another month to get 1.2.4, and maybe another 6 to get 1.2.5... If OpenSUSE Build service don't support deb packages, the official Mono team could at least talk to the Debian Mono Group, the current working group for mono on ubuntu, to see if they can keep a really updated version of mono and monodevelop on the backports repository. This would be great, and they already seem to have the expertise. Thanks, Natan Vivo 2007/9/4, Miguel de Icaza : > > > > I mean, really official packages, released along with the ones for > > Suse and RedHat, that are really updated and follow the release > > versions, not what we have today... > > We currently do not have plans; Ubuntu seems to have some pretty good > up to date packages though. > > > As a long time .NET developer, I would love to develop stuff for linux > > using mono but right now it is easier to install it on windows and > > code using SharpDevelop then on my ubuntu machine. > > You could try OpenSUSE :-) > > Miguel. > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070905/f73c3aac/attachment-0001.html From nvivo.misc at gmail.com Tue Sep 4 23:33:41 2007 From: nvivo.misc at gmail.com (Natan Vivo) Date: Wed, 5 Sep 2007 00:33:41 -0300 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: <46DDC205.8040900@chello.nl> References: <1188936884.13903.412.camel@erandi.dom> <46DDC205.8040900@chello.nl> Message-ID: Hi Danny. I understand that OpenSUSE may be a good distribution, but I don't want to change my distribution of choice because of mono... 2007/9/4, Danny Stolle : > > Miguel de Icaza wrote: > >> I mean, really official packages, released along with the ones for > >> Suse and RedHat, that are really updated and follow the release > >> versions, not what we have today... > > > > We currently do not have plans; Ubuntu seems to have some pretty good > > up to date packages though. > > > >> As a long time .NET developer, I would love to develop stuff for linux > >> using mono but right now it is easier to install it on windows and > >> code using SharpDevelop then on my ubuntu machine. > > > > You could try OpenSUSE :-) > > > > Miguel. > > _______________________________________________ > > Mono-list maillist - Mono-list at lists.ximian.com > > http://lists.ximian.com/mailman/listinfo/mono-list > > > > Hi, > > I saw this posting and wanted to reply. I am currently using SusE10.1 > and enthousiastic on the YAST capabilities for the first installation. > But I was having some difficulties with the mono-basic package. It had > dependency problems. But installing the package using commandline RPM > there was no trouble at all. > > Even updating new packages is quite easy actually. > > Danny > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070905/dc661b50/attachment.html From miguel at novell.com Tue Sep 4 23:37:46 2007 From: miguel at novell.com (Miguel de Icaza) Date: Tue, 04 Sep 2007 23:37:46 -0400 Subject: [Mono-list] Official Mono Repository for Ubuntu? In-Reply-To: References: <1188936884.13903.412.camel@erandi.dom> Message-ID: <1188963466.17775.15.camel@erandi.dom> > I'm really disappointed about this. I don't want to discuss about what > distribution is better. I am not. Am pointing you to a distribution that we support directly. Supporting the RPM distributions for us is easy, adding DEB for us is hard because it requires cycles that we do not have (it is not just a matter of redoing the packaging, it is a matter of testing, QA, upgrade paths and so on). I do not want to spread ourselves too thin, we have a lot of packaging needs that are not satisfied today and adding more distributions to the mix is just not a priority. > But the fact is that Ubuntu is a major player today, which means that > not even thinking about supporting it keeps lots of people like me > testing and developing new stuff using mono. You should bring this up with your distribution, they have the proper resources to support this. Miguel. From MSpencer at ndsuk.com Wed Sep 5 12:04:35 2007 From: MSpencer at ndsuk.com (Spencer, Matthew) Date: Wed, 5 Sep 2007 17:04:35 +0100 Subject: [Mono-list] Regression on arm platform in 1.2.5 In-Reply-To: <200DE3FF74A3DD4DB39C29B7350305056E7113@ukex07.UK.NDS.COM> References: <200DE3FF74A3DD4DB39C29B7350305056E7113@ukex07.UK.NDS.COM> Message-ID: <200DE3FF74A3DD4DB39C29B7350305056E7286@ukex07.UK.NDS.COM> Hi again Ok, so I have done a little more investigation into this. After investigating the call stack (using --trace=FlickrNet), it turns out that the application was never getting past the .cctor function, so I removed all statics from the class and the application no longer hung. It turns out that the line that was causing the problem in the FlickrNet.dll is: private static XmlSerializer _uploaderSerializer = new XmlSerializer(typeof(FlickrNet.Uploader)); I have checked the diffs in the arm specific sections of mini between 1.2.4 and 1.2.5 and can see no major changes in there (there are no changes in arch/arm either). I'm not sure where else to look for differences as this would appear to be an Arm specific problem. Does anyone have any ideas why the above code would cause the runtime to go into an infinite loop on the arm platform? I'm using the sources from FlickrNet-25277.zip available from codeplex.com. Regards Matt ________________________________ From: mono-list-bounces at lists.ximian.com [mailto:mono-list-bounces at lists.ximian.com] On Behalf Of Spencer, Matthew Sent: 04 September 2007 16:24 To: mono-list at lists.ximian.com Subject: [Mono-list] Regression on arm platform in 1.2.5 Hi All I have recently updated to the 1.2.5 version of Mono for my Arm based platform. I have a simple Flickr based application that used to work and no longer does. It simply consumed more and more memory until the app crashes. Here is example code that will cause the problem: public static void Main(string[] args) { Flickr flickr=new Flickr(""); } I have tried the debugging techniques given before by Paolo (thanks for that), but I am still rather confused. The backtrace only ever goes back as far as the last c# call, so I only ever get to see the top of the stack. Any ideas how I can get to see more of the stack frame? However, the code does seem to be spending all of its time reflecting information out of the Flickr.dll. Does anyone have any ideas what might have changed to cause this problem? Cheers Matt ************************************************************************ ********************************* This e-mail is confidential, the property of NDS Ltd and intended for the addressee only. Any dissemination, copying or distribution of this message or any attachments by anyone other than the intended recipient is strictly prohibited. If you have received this message in error, please immediately notify the postmaster at nds.com and destroy the original message. Messages sent to and from NDS may be monitored. NDS cannot guarantee any message delivery method is secure or error-free. Information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. We do not accept responsibility for any errors or omissions in this message and/or attachment that arise as a result of transmission. You should carry out your own virus checks before opening any attachment. Any views or opinions presented are solely those of the author and do not necessarily represent those of NDS. To protect the environment please do not print this e-mail unless necessary. NDS Limited Registered office: One Heathrow Boulevard, 286 Bath Road, West Drayton, Middlesex, UB7 0DQ, United Kingdom. A company registered in England and Wales Registered no. 3080780 VAT no. GB 603 8808 40-00 ************************************************************************ ********************************** ********************************************************************************************************* This e-mail is confidential, the property of NDS Ltd and intended for the addressee only. Any dissemination, copying or distribution of this message or any attachments by anyone other than the intended recipient is strictly prohibited. If you have received this message in error, please immediately notify the postmaster at nds.com and destroy the original message. Messages sent to and from NDS may be monitored. NDS cannot guarantee any message delivery method is secure or error-free. Information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. We do not accept responsibility for any errors or omissions in this message and/or attachment that arise as a result of transmission. You should carry out your own virus checks before opening any attachment. Any views or opinions presented are solely those of the author and do not necessarily represent those of NDS. To protect the environment please do not print this e-mail unless necessary. NDS Limited Registered office: One Heathrow Boulevard, 286 Bath Road, West Drayton, Middlesex, UB7 0DQ, United Kingdom. A company registered in England and Wales Registered no. 3080780 VAT no. GB 603 8808 40-00 ********************************************************************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070905/d9144b86/attachment.html From carnold at electrichendrix.com Wed Sep 5 13:52:38 2007 From: carnold at electrichendrix.com (Chris Arnold) Date: Wed, 05 Sep 2007 13:52:38 -0400 Subject: [Mono-list] Upgrade mono In-Reply-To: <46DEE20B.40609@electrichendrix.com> References: <46DEE20B.40609@electrichendrix.com> Message-ID: <46DEECE6.5060503@electrichendrix.com> Chris Arnold wrote: > Hello all! I use SLED SP1 with gnome. I want to upgrade my mono install > b/c my f-spot pic proggie is giving this error: > An unhandled exception was thrown: The handler for the event > ButtonPressEvent should take '(System.Object,Gtk.ButtonPressEventArgs)', > but the signature of the provided handler ('HandleZoomOut') is > '(System.Object,System.EventArgs)' > > > at SignalConnector.ConnectFunc > (intptr,intptr,intptr,intptr,intptr,int,intptr) <0x0033f> > at (wrapper native-to-managed) SignalConnector.ConnectFunc > (intptr,intptr,intptr,intptr,intptr,int,intptr) <0x0004b> > in (unmanaged) 0xb60e190f > at (wrapper managed-to-native) > SignalConnector.glade_xml_signal_autoconnect_full > (intptr,Glade.XML/SignalConnector/RawXMLConnectFunc,intptr) <0x00004> > at SignalConnector.Autoconnect () <0x00059> > at Glade.XML.Autoconnect (object) <0x00042> > at MainWindow..ctor (Db) <0x0009d> > at FSpot.Core.get_MainWindow () <0x0002a> > at FSpot.Core.Organize () <0x0000f> > at FSpot.Driver.Main (string[]) <0x005c7> > > .NET Version: 1.1.4322.2032 > > Assembly Version Information: > > gconf-sharp (2.8.0.0) > pango-sharp (2.8.0.0) > SemWeb (0.5.0.2) > glade-sharp (2.8.0.0) > gtkhtml-sharp (2.8.0.0) > System.Data (1.0.5000.0) > Mono.Data.SqliteClient (1.0.5000.0) > gdk-sharp (2.8.0.0) > gnome-vfs-sharp (2.8.0.0) > dbus-sharp (0.60.0.0) > System (1.0.5000.0) > Mono.Posix (1.0.5000.0) > atk-sharp (2.8.0.0) > gtk-sharp (2.8.0.0) > glib-sharp (2.8.0.0) > gnome-sharp (2.8.0.0) > f-spot (0.0.0.0) > mscorlib (1.0.5000.0) > > Platform Information: Linux 2.6.16.46-0.12-default i686 i386 GNU/Linux > > Disribution Information: > > [/etc/novell-release] > SUSE Linux Enterprise Desktop 10 (i586) > VERSION = 10 > PATCHLEVEL = 1 > > [/etc/lsb-release] > LSB_VERSION="core-2.0-noarch:core-3.0-noarch:core-2.0-ia32:core-3.0-ia32" > > [/etc/SuSE-release] > SUSE Linux Enterprise Desktop 10 (i586) > VERSION = 10 > PATCHLEVEL = 1 > > The last time i had this happen i had to upgrade my mono install. > Mono-core is 1.2.2-12.12. I have added > http://go-mono.com/download-stable/suse-101-i586 to yast. What do i need > to upgrade in order to upgrade my mono install? thanks for any help > > Chris > > > From shane.isbell at gmail.com Wed Sep 5 16:54:41 2007 From: shane.isbell at gmail.com (Shane Isbell) Date: Wed, 5 Sep 2007 13:54:41 -0700 Subject: [Mono-list] Configuring App Domain Managers In-Reply-To: <20070519110145.6D1E3380C1@astra.telenet-ops.be> References: <20070519110145.6D1E3380C1@astra.telenet-ops.be> Message-ID: Hi Gert, I just submitted the test case for this issue: http://bugzilla.ximian.com/show_bug.cgi?id=82711. Without the ability to configure the app domain managers, plugins within Apache NMaven don't work under Mono; this is starting to become a bigger issue for the NMaven community. Regards, Shane On 5/19/07, Gert Driesen wrote: > > Shane, > > It's not supported yet, but feel free to submit a bug report containing a > repro or unit tests. > > Gert > ________________________________ > > From: mono-list-bounces at lists.ximian.com > [mailto:mono-list-bounces at lists.ximian.com] On Behalf Of Shane Isbell > Sent: zaterdag 19 mei 2007 6:59 > To: mono-list at lists.ximian.com > Subject: [Mono-list] Configuring App Domain Managers > > > Does Mono 1.2.3.1 support the use of the APPDOMAIN_MANAGER_ASM and > APPDOMAIN_MANAGER_TYPE environment variables to plugin a new app domain > manager? > > Thanks, > Shane > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070905/5087c09e/attachment.html From joelwreed at gmail.com Wed Sep 5 23:59:46 2007 From: joelwreed at gmail.com (Joel Reed) Date: Wed, 5 Sep 2007 23:59:46 -0400 Subject: [Mono-list] [ANN] tf4mono 0.5.1 release - codeplex client, new GTK mode Message-ID: <20070906035945.GA10486@localdomain> Version 0.5.1 of the open source Team Foundation/CodePlex client for Mono is now available at http://code.google.com/p/tf4mono/ This is a development update with win32 installation packages, a GTK-based gui mode for exploring TFS repositories, many command enhancements, improved builtin help with usage guidelines, and numerous bugfixes. Please update to this version if possible. If you're not familiar with Microsoft's Team Foundation / Team System product, checkout the section "What is Team Foundation / Team System?" below. Example invocations of the tf4mono client can be found here: http://tf4mono.googlecode.com/svn/trunk/docs/examples/ Enhancements include: =================================================================== # Add "explore" command for visually browsing a repository. Features include syntax highlighting, sortable columns, multiple views, and copy-and-paste for code review feedback. This is a work in progress! # Win32 packages of tf4mono, built with NSIS. A base version without GTK dependencies and no explore command and a full version WITH GTK dependencies and the "explore" command are available. # Add gtk login dialog for missing auth credentials # Undo with no args will undo all local changes, previously the command required at least one filename or path # All commands now support reading arguments from stdin # Command chaining now supports output piping using %%. Implemented for ls-files and diff /q commands only! For example, you can say "tf ls-files /others %% add" to add all unknown files to the repository. # Support wildcards in checkout paths # Teach tf workspaces command to filter by workspace name if requested # Add syntax guidance to tf help invocations # 8 more test cases for tf client program covering add, renaming, and deleting of directories, and renaming files # Report on UndonePendingChange events (which can happen if file upload fails on checkin for example) Bugfixes include: =================================================================== # BUGFIX: tf rename should work now # BUGFIX: teach diff /modified to check file hashes before reporting a modified file # BUGFIX: when told to delete a directory, delete files within them too # BUGFIX: implement CheckAuthentication call - this makes adding large numbers of files more reliable as it prevents NTML authentication timeout related failures # BUGFIX: on windows, must do case insensitive path comparisons when looking for cached workspace info # BUGFIX: tf online didn't pickup deletes to pend # BUGFIX: GetLocalWorkspaceInfo(string path) should trim workspaceinfo directory separators before looking for a match # BUGFIX: TryGetServerItemForLocalItem and TryGetLocalItemForServerItem should find longest match # BUGFIX: teach tf workfold /unmap to accept relative paths # BUGFIX: always sort items in an ItemSet (sorts tf dir output for example) What is Team Foundation / Team System? =================================================================== Team Foundation is a 'collection of collaborative technologies that support a team effort to deliver a product' from Microsoft that includes bug tracking, source control, and other capabilities.' Team Foundation powers Microsoft's CodePlex site and is used in many corporate environments. Team Foundation for Mono provides the TF client for accessing Team Foundation Servers as well as the Microsoft.TeamFoundation.* assemblies related to Version Control. An example of accessing CodePlex to pull the latest version of the "Turtle" project is below. CodePlex Example Usage =================================================================== In the commands below, UID = your codeplex user name PWD = your codeplex password MACHINENAME = your machine name (or any other random name) First create a workspace: tf /server:https://tfs01.codeplex.com /login:snd\\UID,PWD workspace /new "MACHINENAME;UID" Then map "Turtle" project to a local folder: tf /server:https://tfs01.codeplex.com /login:snd\\UID,PWD workfold "$/Turtle" ~/Source/turtle Then pull the files: tf /server:https://tfs01.codeplex.com /login:snd\\UID,PWD get ~/Source/turtle /recursive Then you could review the history, review a changeset, then look at the diff of the changeset. Note: the examples below assume the tf client "Credentials.Save" option was enabled. cd ~/Source/turtle tf history /recursive . tf changeset 340 tf diff C340 Source and Packages =================================================================== Debian packages, Win32 packages, and source tarball available here: http://code.google.com/p/tf4mono/downloads/list Additionally, a git clone of the source tree can be made with: git clone git://repo.or.cz/tfs.git This is where most development happens. SVN users can check out the semi-regularly updated project source code at: svn checkout http://tf4mono.googlecode.com/svn/trunk/ tf4mono Project Site =================================================================== There is a Google Code Project Site for tf4mono, the URL is: http://code.google.com/p/tf4mono/ There is a Google Discussion Group for tf4mono as well. The URL is: http://groups.google.com/group/tf4mono Thanks for reading! jr From andrew at castlesoft.com.au Thu Sep 6 02:02:22 2007 From: andrew at castlesoft.com.au (Andrew Tierney) Date: Thu, 06 Sep 2007 16:02:22 +1000 Subject: [Mono-list] Bug in StreamWriter ??? (Mono 1.2.5 on Windows XP) ?? Message-ID: <46DF97EE.3020102@castlesoft.com.au> Hi All, I just tested a little VOIP account checker I had running on .NET 2.0 and it appears to crash on Mono 1.2.5. The code snippet in question is as follows: (basically go to the login page, post details then save cookies and reply...) ================================================================================ string VOIPPage = "https://billing.sipme.com.au:8445/login.html"; string VOIPPOST = "user=USERID&password=MYPASSWORD&x=27&y=12"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(VOIPPage); req.Method = "POST"; req.CookieContainer = new CookieContainer(); req.ContentType = "application/x-www-form-urlencoded"; req.ContentLength = VOIPPOST.Length; StreamWriter sw = new StreamWriter(req.GetRequestStream()); sw.Write(VOIPPOST); sw.Close(); // <<<==== CRASHES HERE..on MONO ?????? HttpWebResponse postRes = (HttpWebResponse)req.GetResponse(); StreamReader sr = new StreamReader(postRes.GetResponseStream()); string reply = sr.ReadToEnd(); ====================================================================== The Error when I run this on MONO 1.2.5 is: Unhandled Exception: System.Net.WebException: Error writing request. at System.Net.WebConnectionStream.WriteRequest () [0x00000] at System.Net.WebConnectionStream.Close () [0x00000] at System.IO.StreamWriter.Dispose (Boolean disposing) [0x00000] at System.IO.StreamWriter.Close () [0x00000] at Voip.Program.Main (System.String[] args) [0x00000] It works fine on .NET 2.0 on Windows XP Sp2.. Any ideas ?? Regards Andrew From andrew at castlesoft.com.au Thu Sep 6 02:39:08 2007 From: andrew at castlesoft.com.au (Andrew Tierney) Date: Thu, 06 Sep 2007 16:39:08 +1000 Subject: [Mono-list] Bug in StreamWriter ??? (Mono 1.2.5 on Windows XP) ?? In-Reply-To: <46DF97EE.3020102@castlesoft.com.au> References: <46DF97EE.3020102@castlesoft.com.au> Message-ID: <46DFA08C.1060200@castlesoft.com.au> Some more info.. The same code for a HTTP (not HTTPS) works fine on Mono 1.2.5.. Regards Andrew Andrew Tierney wrote: > Hi All, > > I just tested a little VOIP account checker I had running on .NET 2.0 > and it appears to crash on Mono 1.2.5. > > The code snippet in question is as follows: (basically go to the login > page, post details then save cookies and reply...) > > ================================================================================ > > string VOIPPage = > "https://billing.sipme.com.au:8445/login.html"; > string VOIPPOST = "user=USERID&password=MYPASSWORD&x=27&y=12"; > > HttpWebRequest req = > (HttpWebRequest)WebRequest.Create(VOIPPage); > req.Method = "POST"; > req.CookieContainer = new CookieContainer(); > req.ContentType = "application/x-www-form-urlencoded"; > req.ContentLength = VOIPPOST.Length; > StreamWriter sw = new StreamWriter(req.GetRequestStream()); > sw.Write(VOIPPOST); > sw.Close(); // <<<==== CRASHES HERE..on MONO ?????? > > HttpWebResponse postRes = (HttpWebResponse)req.GetResponse(); > StreamReader sr = new StreamReader(postRes.GetResponseStream()); > string reply = sr.ReadToEnd(); > > ====================================================================== > > The Error when I run this on MONO 1.2.5 is: > > Unhandled Exception: System.Net.WebException: Error writing request. > at System.Net.WebConnectionStream.WriteRequest () [0x00000] > at System.Net.WebConnectionStream.Close () [0x00000] > at System.IO.StreamWriter.Dispose (Boolean disposing) [0x00000] > at System.IO.StreamWriter.Close () [0x00000] > at Voip.Program.Main (System.String[] args) [0x00000] > > It works fine on .NET 2.0 on Windows XP Sp2.. > > Any ideas ?? > > Regards > Andrew > > > > > > > > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > From mail4ng at googlemail.com Thu Sep 6 07:37:08 2007 From: mail4ng at googlemail.com (DW) Date: Thu, 6 Sep 2007 13:37:08 +0200 Subject: [Mono-list] DockPanel or something like thtat for mono? Message-ID: <1jerz67r3hugy.on2xd16bkvoh.dlg@40tude.net> Hello, is it possible to build mono apps with a GUI like VS or Eclipse? a really great lib for that is Weifen Luo's DockPanel Suite. [1] is there something equal for the mono world? the way monodevelop implemented this isnt complete. they can minimize panels, but can't autopopup and drag them around. or am i missing something at this point? thx for any informations regards Daniel [1] http://sourceforge.net/projects/dockpanelsuite From Dan.Maser at inin.com Thu Sep 6 09:13:24 2007 From: Dan.Maser at inin.com (Maser, Dan) Date: Thu, 6 Sep 2007 09:13:24 -0400 Subject: [Mono-list] DockPanel or something like thtat for mono? In-Reply-To: <1jerz67r3hugy.on2xd16bkvoh.dlg@40tude.net> References: <1jerz67r3hugy.on2xd16bkvoh.dlg@40tude.net> Message-ID: <260A0A30F9017945932CC4F7B911B33905DBD0F4@i3mail1.i3domain.inin.com> I looked at DockPanel Suite a while back. I saw how the Win32 interops were being used and figured it was reasonable to remove them. In fact, Weifen Luo agrees... See this thread: http://sourceforge.net/forum/forum.php?thread_id=1786012&forum_id=402316 The thread does mention that the MonoDevelop app has docking, and uses Gtk#. I've not checked, but if the interfaces are similar it might be reasonable to make a wrapper class such that Win32 apps use the DockPanel Suite and Linux apps use Gtk#? -----Original Message----- From: mono-list-bounces at lists.ximian.com [mailto:mono-list-bounces at lists.ximian.com] On Behalf Of DW Sent: Thursday, September 06, 2007 6:37 AM To: Mono-list at lists.ximian.com Subject: [Mono-list] DockPanel or something like thtat for mono? Hello, is it possible to build mono apps with a GUI like VS or Eclipse? a really great lib for that is Weifen Luo's DockPanel Suite. [1] is there something equal for the mono world? the way monodevelop implemented this isnt complete. they can minimize panels, but can't autopopup and drag them around. or am i missing something at this point? thx for any informations regards Daniel [1] http://sourceforge.net/projects/dockpanelsuite _______________________________________________ Mono-list maillist - Mono-list at lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list From kumpera at gmail.com Thu Sep 6 10:50:00 2007 From: kumpera at gmail.com (Rodrigo Kumpera) Date: Thu, 6 Sep 2007 11:50:00 -0300 Subject: [Mono-list] Mono, Rhino.Mocks, and MbUnit In-Reply-To: <140160570709041723i13934a28r7003071a21ee9a27@mail.gmail.com> References: <140160570709041723i13934a28r7003071a21ee9a27@mail.gmail.com> Message-ID: <8cca42d80709060750y161a7872m2e164f338790b555@mail.gmail.com> Hi Tom, Please fill a bug report and we will take a look at it. You can follow this page for more info about it. http://www.mono-project.com/Bugs Thanks, Rodrigo On 9/4/07, Tom Opgenorth wrote: > > Hello, > > I tried running the est suite for Rhino.Mocks under Mono 1.2.5, > using MbUnit.Cons.exe. Not to sure, but it looks like Mono doesn't > like that is going on . I don't suppose that anybody has any ideas? > > I get an error: > > file reflection.c: line 9704 (resolve_object): should not be reached > aborting... > > When I add the --verbose parameter to mono, it's a pretty big file (~ > 1MB of text). > > > The last few lines are : > Method (wrapper managed-to-native) > System.Reflection.MonoGenericClass:GetParentType () emitted at > 03881318 to 0388135B (code length 67) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetMethods > (System.Reflection.BindingFlags) emitted at 03881360 to 0388137A (code > length 26) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetMethodsByName > (string,System.Reflection.BindingFlags,bool,System.Type) emitted at > 03881390 to 038815D6 (code length 582) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetConstructors > (System.Reflection.BindingFlags) emitted at 038815D8 to 03881752 (code > length 378) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.ConstructorBuilder:get_Attributes () > emitted at 03881758 to 03881763 (code length 11) > [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetFields > (System.Reflection.BindingFlags) emitted at 03881768 to 0388190D (code > length 421) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetProperties > (System.Reflection.BindingFlags) emitted at 03881910 to 03881AC3 (code > length 435) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.MonoGenericClass:get_event_info () emitted at > 03881AC8 to 03881B40 (code length 120) [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.TypeBuilder:GetEvents_internal > (System.Reflection.BindingFlags) emitted at 03881B58 to 03881D26 (code > length 462) [domain-Rhino.Mocks.Tests.dll] > Method (wrapper managed-to-native) > System.Reflection.MonoGenericClass:initialize > (System.Reflection.MethodInfo[],System.Reflection.ConstructorInfo[], > System.Reflection.FieldInfo[],System.Reflection.PropertyInfo[], > System.Reflection.EventInfo[]) > emitted at 03881D38 to 03881D84 (code length 76) > [domain-Rhino.Mocks.Tests.dll] > Method (wrapper managed-to-native) > System.Reflection.MonoGenericClass:GetCorrespondingInflatedConstructor > (System.Reflection.ConstructorInfo) emitted at 03881D88 to 03881DCE > (code length 70) [domain-Rhino.Mocks.Tests.dll] > Method > Castle.DynamicProxy.Generators.BaseProxyGenerator:EmitLoadGenricMethodArguments > (Castle.DynamicProxy.Generators.Emitters.MethodEmitter, > System.Reflection.MethodInfo, > Castle.DynamicProxy.Generators.Emitters.SimpleAST.LocalReference) > emitted at 03881DD0 to 03882097 (code length 711) > [domain-Rhino.Mocks.Tests.dll] > Method Castle.DynamicProxy.Generators.BaseProxyGenerator: > b__0 > (System.Type) emitted at 038820A8 to 038820D0 (code length 40) > [domain-Rhino.Mocks.Tests.dll] > Method > System.Reflection.Emit.GenericTypeParameterBuilder:get_IsGenericParameter > () emitted at 038820D8 to 038820E2 (code length 10) > [domain-Rhino.Mocks.Tests.dll] > Method System.Reflection.Emit.GenericTypeParameterBuilder:IsValueTypeImpl > () emitted at 038820E8 to 03882123 (code length 59) > [domain-Rhino.Mocks.Tests.dll] > Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:.cctor () > emitted at 038822A0 to 03882713 (code length 1139) > [domain-Rhino.Mocks.Tests.dll] > Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:.ctor > (Castle.Core.Interceptor.IInterceptor[],object) emitted at 03882718 to > 0388272F (code length 23) [domain-Rhino.Mocks.Tests.dll] > Method IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f:get_ProxyHash > () emitted at 03882788 to 03882839 (code length 177) > [domain-Rhino.Mocks.Tests.dll] > Method Invocationget_ProxyHash_10:.ctor > (IWithGeneric1Proxy693f431168aa4565aa5a6b75d3fe588f, > Castle.Core.Interceptor.IInterceptor[],System.Type, > System.Reflection.MethodInfo,object[],object) > emitted at 03882850 to 0388287B (code length 43) > [domain-Rhino.Mocks.Tests.dll] > Method (wrapper managed-to-native) > System.Object:__icall_wrapper_compile_generic_method > (object,intptr,intptr,intptr) emitted at 010CE158 to 010CE1A7 (code > length 79) [MbUnit.Cons.exe] > GenericTypeParameterBuilder > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070906/b4429b90/attachment-0001.html From ribeirogustavoti at gmail.com Thu Sep 6 12:37:46 2007 From: ribeirogustavoti at gmail.com (Gustavo Ribeiro De Bonis) Date: Thu, 06 Sep 2007 13:37:46 -0300 Subject: [Mono-list] Writing and Compiling on Linux and Running on WIndow Message-ID: <46E02CDA.8040107@gmail.com> Hi, I wrote the app using Mono, and is a Windows Forms app. I'm using System.Windows.Forms framework as usual but everytime I run the app on Windows it shows a black screen behind the app, I would like to know how do i remove this black screen. Thanks everyone, and sorry by bad English From monkey at jpobst.com Thu Sep 6 12:46:47 2007 From: monkey at jpobst.com (Jonathan Pobst) Date: Thu, 06 Sep 2007 11:46:47 -0500 Subject: [Mono-list] Writing and Compiling on Linux and Running on WIndow In-Reply-To: <46E02CDA.8040107@gmail.com> References: <46E02CDA.8040107@gmail.com> Message-ID: <46E02EF7.9050805@jpobst.com> Hi! Check out the first question here: http://www.mono-project.com/FAQ:_Winforms. That should fix it. :) Jon Gustavo Ribeiro De Bonis wrote: > Hi, > > I wrote the app using Mono, and is a Windows Forms app. > > I'm using System.Windows.Forms framework as usual but everytime I run > the app on Windows it shows a black screen behind the app, > > I would like to know how do i remove this black screen. > > Thanks everyone, and sorry by bad English > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > > From damien.daly at free.fr Thu Sep 6 13:15:55 2007 From: damien.daly at free.fr (Damien DALY) Date: Thu, 6 Sep 2007 19:15:55 +0200 Subject: [Mono-list] Socket under mono 1.2.3 (ubuntu feisty) Message-ID: <6df580e50709061015ld0cce6dx2f1fd4bac7174bc9@mail.gmail.com> Hi, I'm using a lib to have my custom Smtp server (I've made a simple mailing list server). This lib : http://www.lumisoft.ee/ (direct download : http://www.lumisoft.ee/lsWWW/Download/Downloads/Net/). It uses System.Net.Sockets.Socket as listening TCP Server. When I use the LumiSoft.Net.SMTP.Server.SMTP_Server class (SMTP Server), it does not seam to be listening... It works under windows with microsoft framework, but under mono 1.2.3(Ubuntu feisty), either connecting to server or with netstat, I don't see any listening tcp related to my server. I will do some tests under other OS (and other mono version). May someone have an idea ? Thanks, Damien -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070906/7966b1be/attachment.html From arcosta at gmail.com Thu Sep 6 14:08:40 2007 From: arcosta at gmail.com (Aurelio Costa) Date: Thu, 6 Sep 2007 15:08:40 -0300 Subject: [Mono-list] Bug in StreamWriter ??? (Mono 1.2.5 on Windows XP) ?? In-Reply-To: <46DFA08C.1060200@castlesoft.com.au> References: <46DF97EE.3020102@castlesoft.com.au> <46DFA08C.1060200@castlesoft.com.au> Message-ID: <778fb2d40709061108h91be9e7h3861c6b498926586@mail.gmail.com> May be I'm wrong, but i think that the problem is not on StreamWriter but on the connection using HTTPS, look for this kind of error on list history and you will see similar stuff. 2007/9/6, Andrew Tierney : > Some more info.. > > The same code for a HTTP (not HTTPS) works fine on Mono 1.2.5.. > > Regards > Andrew > > > Andrew Tierney wrote: > > Hi All, > > > > I just tested a little VOIP account checker I had running on .NET 2.0 > > and it appears to crash on Mono 1.2.5. > > > > The code snippet in question is as follows: (basically go to the login > > page, post details then save cookies and reply...) > > > > ================================================================================ > > > > string VOIPPage = > > "https://billing.sipme.com.au:8445/login.html"; > > string VOIPPOST = "user=USERID&password=MYPASSWORD&x=27&y=12"; > > > > HttpWebRequest req = > > (HttpWebRequest)WebRequest.Create(VOIPPage); > > req.Method = "POST"; > > req.CookieContainer = new CookieContainer(); > > req.ContentType = "application/x-www-form-urlencoded"; > > req.ContentLength = VOIPPOST.Length; > > StreamWriter sw = new StreamWriter(req.GetRequestStream()); > > sw.Write(VOIPPOST); > > sw.Close(); // <<<==== CRASHES HERE..on MONO ?????? > > > > HttpWebResponse postRes = (HttpWebResponse)req.GetResponse(); > > StreamReader sr = new StreamReader(postRes.GetResponseStream()); > > string reply = sr.ReadToEnd(); > > > > ====================================================================== > > > > The Error when I run this on MONO 1.2.5 is: > > > > Unhandled Exception: System.Net.WebException: Error writing request. > > at System.Net.WebConnectionStream.WriteRequest () [0x00000] > > at System.Net.WebConnectionStream.Close () [0x00000] > > at System.IO.StreamWriter.Dispose (Boolean disposing) [0x00000] > > at System.IO.StreamWriter.Close () [0x00000] > > at Voip.Program.Main (System.String[] args) [0x00000] > > > > It works fine on .NET 2.0 on Windows XP Sp2.. > > > > Any ideas ?? > > > > Regards > > Andrew > > > > > > > > > > > > > > > > _______________________________________________ > > Mono-list maillist - Mono-list at lists.ximian.com > > http://lists.ximian.com/mailman/listinfo/mono-list > > > > > > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -- Aurelio R. Costa http://aureliocosta.blogspot.com/ From arcosta at gmail.com Thu Sep 6 15:11:24 2007 From: arcosta at gmail.com (Aurelio Costa) Date: Thu, 6 Sep 2007 16:11:24 -0300 Subject: [Mono-list] Socket under mono 1.2.3 (ubuntu feisty) In-Reply-To: <6df580e50709061203o5a2c40b7r4ee279a9545eae03@mail.gmail.com> References: <6df580e50709061015ld0cce6dx2f1fd4bac7174bc9@mail.gmail.com> <778fb2d40709061112i36bc148dyde01446fc7ab873a@mail.gmail.com> <6df580e50709061203o5a2c40b7r4ee279a9545eae03@mail.gmail.com> Message-ID: <778fb2d40709061211x7b1fddd8n8110b4502eb1b5cd@mail.gmail.com> This limitation is only to ports under 1024. You can use any other above like 2525, 2555, ... 2007/9/6, Damien DALY : > Thanks, you're right... > > GRRRRRRR ! > > I will have to test code as root... snif.... > > Do you know which ports are restricted like this ? > > Damien > > 2007/9/6, Aurelio Costa < arcosta at gmail.com>: > > I dont know if it is your situation, but remember that you cant listen > > port under 1024 without root permission. > > > > 2007/9/6, Damien DALY : > > > Hi, > > > > > > I'm using a lib to have my custom Smtp server (I've made a simple > mailing > > > list server). > > > This lib : http://www.lumisoft.ee/ (direct download : > > > http://www.lumisoft.ee/lsWWW/Download/Downloads/Net/ ). > > > > > > It uses System.Net.Sockets.Socket as listening TCP Server. > > > > > > When I use the LumiSoft.Net.SMTP.Server.SMTP_Server > class > > > (SMTP Server), it does not seam to be listening... > > > > > > It works under windows with microsoft framework, but under mono 1.2.3 > > > (Ubuntu feisty), either connecting to server or with netstat, I don't > see > > > any listening tcp related to my server. > > > > > > I will do some tests under other OS (and other mono version). > > > > > > May someone have an idea ? > > > > > > Thanks, > > > > > > Damien > > > > > > _______________________________________________ > > > Mono-list maillist - Mono-list at lists.ximian.com > > > http://lists.ximian.com/mailman/listinfo/mono-list > > > > > > > > > > > > -- > > Aurelio R. Costa > > http://aureliocosta.blogspot.com/ > > > > > > -- Aurelio R. Costa http://aureliocosta.blogspot.com/ From damien.daly at free.fr Thu Sep 6 15:20:21 2007 From: damien.daly at free.fr (Damien DALY) Date: Thu, 6 Sep 2007 21:20:21 +0200 Subject: [Mono-list] Script for mono-service2 Message-ID: <6df580e50709061220n3773766csfa570e669cda687e@mail.gmail.com> Hi, I would like to start and stop a mono-service2 service like I start and stop a linux service (like apache2 start or apache2 stop). I'm working with ubuntu feisty. If someone know where I can find a script that mimic this behavior, I would greatly thank him. Damien -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070906/f185e5ae/attachment.html From gert.driesen at telenet.be Thu Sep 6 15:57:28 2007 From: gert.driesen at telenet.be (Gert Driesen) Date: Thu, 6 Sep 2007 21:57:28 +0200 Subject: [Mono-list] Bug in StreamWriter ??? (Mono 1.2.5 on Windows XP) ?? In-Reply-To: <46DF97EE.3020102@castlesoft.com.au> Message-ID: <20070906195740.11DBAD41D6@asia.telenet-ops.be> Andrew, Please submit a bug report for this. Gert -----Original Message----- From: mono-list-bounces at lists.ximian.com [mailto:mono-list-bounces at lists.ximian.com] On Behalf Of Andrew Tierney Sent: donderdag 6 september 2007 8:02 To: mono-list at lists.ximian.com Subject: [Mono-list] Bug in StreamWriter ??? (Mono 1.2.5 on Windows XP) ?? Hi All, I just tested a little VOIP account checker I had running on .NET 2.0 and it appears to crash on Mono 1.2.5. The code snippet in question is as follows: (basically go to the login page, post details then save cookies and reply...) ============================================================================ ==== string VOIPPage = "https://billing.sipme.com.au:8445/login.html"; string VOIPPOST = "user=USERID&password=MYPASSWORD&x=27&y=12"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(VOIPPage); req.Method = "POST"; req.CookieContainer = new CookieContainer(); req.ContentType = "application/x-www-form-urlencoded"; req.ContentLength = VOIPPOST.Length; StreamWriter sw = new StreamWriter(req.GetRequestStream()); sw.Write(VOIPPOST); sw.Close(); // <<<==== CRASHES HERE..on MONO ?????? HttpWebResponse postRes = (HttpWebResponse)req.GetResponse(); StreamReader sr = new StreamReader(postRes.GetResponseStream()); string reply = sr.ReadToEnd(); ====================================================================== The Error when I run this on MONO 1.2.5 is: Unhandled Exception: System.Net.WebException: Error writing request. at System.Net.WebConnectionStream.WriteRequest () [0x00000] at System.Net.WebConnectionStream.Close () [0x00000] at System.IO.StreamWriter.Dispose (Boolean disposing) [0x00000] at System.IO.StreamWriter.Close () [0x00000] at Voip.Program.Main (System.String[] args) [0x00000] It works fine on .NET 2.0 on Windows XP Sp2.. Any ideas ?? Regards Andrew _______________________________________________ Mono-list maillist - Mono-list at lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list From jaimeventura at ipp.pt Fri Sep 7 09:43:20 2007 From: jaimeventura at ipp.pt (Jaime Ventura) Date: Fri, 07 Sep 2007 14:43:20 +0100 Subject: [Mono-list] Errors after update....:( In-Reply-To: <46DDF773.9040300@occams.info> References: <46DD6E59.3070405@ipp.pt> <46DDF773.9040300@occams.info> Message-ID: <46E15578.6020208@ipp.pt> Thanks Joshua, for you reply. I have understood the error in the first place, but I "misslooked" at my configuration. So, after your message, I rechecked the configuration file and solved the problem. But a new one came rigth after :( Starting httpd: [Fri Sep 07 14:28:33 2007] [crit] Failed to remove dashboard file '/tmp/mod_mono_dashboard_XXGLOBAL_1', further actions impossible. Operation not permitted Any ideas? thanks once again. Jaime Joshua Tauberer wrote: > Jaime Ventura wrote: >> Im using centos 4 and yum repo from the mono site. >> >> After updating mono, I got the following: > > ... >> Starting httpd: [Tue Sep 04 15:25:29 2007] [crit] The unix daemon >> module not initialized yet. Please make sure that your mod_mono >> module is loaded after the User/Group directives have been parsed. >> Not initializing the dashboard. > > Ahha, so I'm not the only one who had their configuration in a weird > order. > > This is a new feature from Marek. Make sure all mod_mono directives > (that set up applications, etc.) are after the User and Group > directives in httpd.conf. If the Mono directives are loaded in from an > included configuration file, make sure the include happens after > User/Group. > -- Jaime Ventura ------------------------------------- Servi?os de Inform?tica e Comunica??o Seguran?a e Administra??o de Sistemas Instituto Polit?cnico do Porto Rua Dr Roberto Frias, 712 4200-465 PORTO E-mail: jaimeventura at sc.ipp.pt Telefone: 22 557 10 26 (Ext. 1251) Fax: 22 50 20 772 From kevin.flanagan at bom.co.uk Fri Sep 7 14:59:42 2007 From: kevin.flanagan at bom.co.uk (Kevin Flanagan) Date: Fri, 7 Sep 2007 19:59:42 +0100 Subject: [Mono-list] Reporting mono and mod_mono version? In-Reply-To: <46E15578.6020208@ipp.pt> Message-ID: Apologies if this is answered somewhere obvious, haven't turned anything up yet. How can I report the mono version from code at runtime? The value in System.Environment.Version reports something more like the .NET version targetted (it seems). I thought there might be something in the 'Mono' namespace, but I can't seem to see it. Also, how can I report the mod_mono version from an ASP.NET page? Or will I need to do some kind of shell-invoke OS-dependent thing to get that info? Thanks in advance for any information. Kevin Flanagan. From rwijayaratne at yahoo.com.au Sat Sep 8 02:08:25 2007 From: rwijayaratne at yahoo.com.au (R. K. Wijayaratne) Date: Fri, 7 Sep 2007 23:08:25 -0700 (PDT) Subject: [Mono-list] Gecko WebControl in a WinForm, possible? Message-ID: <732464.70513.qm@web50510.mail.re2.yahoo.com> Hello everyone, I was wondering if it was possbile to use a gecko WebControl in a purely WinForms based application under Mono? ____________________________________________________________________________________ Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage. http://au.docs.yahoo.com/mail/unlimitedstorage.html -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070907/1f9ceb1b/attachment.html From =?ISO-8859-1?Q?=22Andr=E9s_G=2E_Aragoneses_=5B_knocte_=5D?= Sat Sep 8 06:36:59 2007 From: =?ISO-8859-1?Q?=22Andr=E9s_G=2E_Aragoneses_=5B_knocte_=5D?= (=?ISO-8859-1?Q?=22Andr=E9s_G=2E_Aragoneses_=5B_knocte_=5D?=) Date: Sat, 08 Sep 2007 12:36:59 +0200 Subject: [Mono-list] Gecko WebControl in a WinForm, possible? In-Reply-To: <732464.70513.qm@web50510.mail.re2.yahoo.com> References: <732464.70513.qm@web50510.mail.re2.yahoo.com> Message-ID: <46E27B4B.5000902@gmail.com> R. K. Wijayaratne escribi?: > Hello everyone, > > I was wondering if it was possbile to use a gecko WebControl in a purely > WinForms based application under Mono? > It's not necessary, you could use the WebControl class from WinForms (2.0 profile), but it's implemented on SVN (and will be available in next mono version). More info: http://tirania.org/blog/archive/2007/Sep-04.html Regards, Andr?s [ knocte ] -- From carnold at electrichendrix.com Wed Sep 5 13:06:19 2007 From: carnold at electrichendrix.com (Chris Arnold) Date: Wed, 05 Sep 2007 13:06:19 -0400 Subject: [Mono-list] Upgrade mono Message-ID: <46DEE20B.40609@electrichendrix.com> Hello all! I use SLED SP1 with gnome. I want to upgrade my mono install b/c my f-spot pic proggie is giving this error: An unhandled exception was thrown: The handler for the event ButtonPressEvent should take '(System.Object,Gtk.ButtonPressEventArgs)', but the signature of the provided handler ('HandleZoomOut') is '(System.Object,System.EventArgs)' at SignalConnector.ConnectFunc (intptr,intptr,intptr,intptr,intptr,int,intptr) <0x0033f> at (wrapper native-to-managed) SignalConnector.ConnectFunc (intptr,intptr,intptr,intptr,intptr,int,intptr) <0x0004b> in (unmanaged) 0xb60e190f at (wrapper managed-to-native) SignalConnector.glade_xml_signal_autoconnect_full (intptr,Glade.XML/SignalConnector/RawXMLConnectFunc,intptr) <0x00004> at SignalConnector.Autoconnect () <0x00059> at Glade.XML.Autoconnect (object) <0x00042> at MainWindow..ctor (Db) <0x0009d> at FSpot.Core.get_MainWindow () <0x0002a> at FSpot.Core.Organize () <0x0000f> at FSpot.Driver.Main (string[]) <0x005c7> .NET Version: 1.1.4322.2032 Assembly Version Information: gconf-sharp (2.8.0.0) pango-sharp (2.8.0.0) SemWeb (0.5.0.2) glade-sharp (2.8.0.0) gtkhtml-sharp (2.8.0.0) System.Data (1.0.5000.0) Mono.Data.SqliteClient (1.0.5000.0) gdk-sharp (2.8.0.0) gnome-vfs-sharp (2.8.0.0) dbus-sharp (0.60.0.0) System (1.0.5000.0) Mono.Posix (1.0.5000.0) atk-sharp (2.8.0.0) gtk-sharp (2.8.0.0) glib-sharp (2.8.0.0) gnome-sharp (2.8.0.0) f-spot (0.0.0.0) mscorlib (1.0.5000.0) Platform Information: Linux 2.6.16.46-0.12-default i686 i386 GNU/Linux Disribution Information: [/etc/novell-release] SUSE Linux Enterprise Desktop 10 (i586) VERSION = 10 PATCHLEVEL = 1 [/etc/lsb-release] LSB_VERSION="core-2.0-noarch:core-3.0-noarch:core-2.0-ia32:core-3.0-ia32" [/etc/SuSE-release] SUSE Linux Enterprise Desktop 10 (i586) VERSION = 10 PATCHLEVEL = 1 The last time i had this happen i had to upgrade my mono install. Mono-core is 1.2.2-12.12. I have added http://go-mono.com/download-stable/suse-101-i586 to yast. What do i need to upgrade in order to upgrade my mono install? thanks for any help Chris From kevin-f at linkprior.com Fri Sep 7 14:36:03 2007 From: kevin-f at linkprior.com (Kevin Flanagan) Date: Fri, 7 Sep 2007 19:36:03 +0100 Subject: [Mono-list] Reporting mono and mod_mono version? In-Reply-To: <46E15578.6020208@ipp.pt> Message-ID: Apologies if this is answered somewhere obvious, haven't turned anything up yet. How can I report the mono version from code at runtime? The value in System.Environment.Version reports something more like the .NET version targetted (it seems). I thought there might be something in the 'Mono' namespace, but I can't seem to see it. Also, how can I report the mod_mono version from an ASP.NET page? Or will I need to do some kind of shell-invoke OS-dependent thing to get that info? Thanks in advance for any information. Kevin Flanagan. From brandon at thresholdofthought.com Sat Sep 8 21:16:55 2007 From: brandon at thresholdofthought.com (Brandon Perry) Date: Sat, 08 Sep 2007 20:16:55 -0500 Subject: [Mono-list] PrintDialog alternative? Message-ID: <1189300615.24773.2.camel@radiohead-laptop> I am looking for a PrintDialog alternative and I saw the PrintUnixDialog. I haven't tested it yet, but is there a better alternative for Gtk? From pupeno at pupeno.com Sun Sep 9 16:02:42 2007 From: pupeno at pupeno.com (J. Pablo =?iso-8859-1?q?Fern=E1ndez?=) Date: Sun, 9 Sep 2007 21:02:42 +0100 Subject: [Mono-list] Failed to install mono on (K)Ubuntu. Message-ID: <200709092102.42305.pupeno@pupeno.com> Hello, I'm running Kubuntu and I installed mono 1.2.5_5 (the bin x86 install) and when I try to run monodevelop I get this message: ###################################################################### MonoDevelop failed to start. If you installed MonoDevelop using a binary installer, take a look at http://www.mono-project.com/InstallerInstructions for more info about possible causes of this error. ###################################################################### System.TypeInitializationException: An exception was thrown by the type initializer for Gnome.ModuleInfo ---> System.DllNotFoundException: gnomesharpglue-2 at (wrapper managed-to-native) Gnome.ModuleInfo:gnomesharp_gnome_moduleinfo_get_name_offset () at Gnome.ModuleInfo..cctor () [0x00000] --- End of inner exception stack trace --- at <0x00000> at Gnome.Modules.get_UI () [0x00000] at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00000] Any ideas what am I missing? Thank you. -- J. Pablo Fern?ndez (http://pupeno.com) PS: more info: $ MONO_LOG_LEVEL=debug monodevelop Mono-INFO: Assembly Loader probing location: '/opt/mono/lib/mono/2.0/mscorlib.dll'. Mono-INFO: Image addref mscorlib 0x82244c0 -> /opt/mono/lib/mono/2.0/mscorlib.dll 0x82213e8: 2 Mono-INFO: AOT failed to load AOT module /opt/mono/lib/mono/2.0/mscorlib.dll.so: /opt/mono/lib/mono/2.0/mscorlib.dll.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader loaded assembly from location: '/opt/mono/lib/mono/2.0/mscorlib.dll'. Mono-INFO: Config attempting to parse: '/opt/mono/lib/mono/2.0/mscorlib.dll.config'. Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/assemblies/mscorlib/mscorlib.config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/assemblies/mscorlib/mscorlib.config'. Mono-INFO: Assembly mscorlib 0x82244c0 added to domain MonoDevelop.exe, ref_count=1 Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/config'. Mono-INFO: Assembly Loader probing location: './MonoDevelop.exe'. Mono-INFO: Image addref MonoDevelop 0x8262520 -> /opt/mono/lib/monodevelop/bin/MonoDevelop.exe 0x821e730: 3 Mono-INFO: Assembly Ref addref MonoDevelop 0x8262520 -> mscorlib 0x82244c0: 2 Mono-INFO: Assembly MonoDevelop 0x8262520 added to domain MonoDevelop.exe, ref_count=1 Mono-INFO: AOT failed to load AOT module /opt/mono/lib/monodevelop/bin/MonoDevelop.exe.so: /opt/mono/lib/monodevelop/bin/MonoDevelop.exe.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader loaded assembly from location: './MonoDevelop.exe'. Mono-INFO: Config attempting to parse: '/opt/mono/lib/monodevelop/bin/MonoDevelop.exe.config'. Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/assemblies/MonoDevelop/MonoDevelop.config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/assemblies/MonoDevelop/MonoDevelop.config'. Mono-INFO: Assembly Loader probing location: './MonoDevelop.exe'. Mono-INFO: AOT failed to load AOT module /opt/mono/lib/monodevelop/bin/MonoDevelop.exe.so: /opt/mono/lib/monodevelop/bin/MonoDevelop.exe.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader probing location: '/opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll'. Mono-INFO: Image addref MonoDevelop.Core 0x827d238 -> /opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll 0x827a1c0: 2 Mono-INFO: Assembly Ref addref MonoDevelop.Core 0x827d238 -> mscorlib 0x82244c0: 3 Mono-INFO: Assembly MonoDevelop.Core 0x827d238 added to domain MonoDevelop.exe, ref_count=1 Mono-INFO: AOT failed to load AOT module /opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll.so: /opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader loaded assembly from location: '/opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll'. Mono-INFO: Config attempting to parse: '/opt/mono/lib/monodevelop/bin/MonoDevelop.Core.dll.config'. Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/assemblies/MonoDevelop.Core/MonoDevelop.Core.config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/assemblies/MonoDevelop.Core/MonoDevelop.Core.config'. Mono-INFO: Assembly Ref addref MonoDevelop 0x8262520 -> MonoDevelop.Core 0x827d238: 2 Mono-INFO: Assembly Loader probing location: '/opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll'. Mono-INFO: Image addref Mono.Addins.Setup 0x82808d0 -> /opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll 0x827de68: 2 (./MonoDevelop.exe:11452): Mono-WARNING **: The request to load the assembly mscorlib v1.0.5000.0 was remapped to v2.0.0.0 Mono-INFO: Assembly Ref addref Mono.Addins.Setup 0x82808d0 -> mscorlib 0x82244c0: 4 Mono-INFO: Assembly Mono.Addins.Setup 0x82808d0 added to domain MonoDevelop.exe, ref_count=1 Mono-INFO: AOT failed to load AOT module /opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll.so: /opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader loaded assembly from location: '/opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll'. Mono-INFO: Config attempting to parse: '/opt/mono/lib/monodevelop/bin/Mono.Addins.Setup.dll.config'. Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/assemblies/Mono.Addins.Setup/Mono.Addins.Setup.config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/assemblies/Mono.Addins.Setup/Mono.Addins.Setup.config'. Mono-INFO: Assembly Ref addref MonoDevelop.Core 0x827d238 -> Mono.Addins.Setup 0x82808d0: 2 Mono-INFO: Assembly Loader probing location: '/opt/mono/lib/monodevelop/bin/Mono.Addins.dll'. Mono-INFO: Image addref Mono.Addins 0x8284438 -> /opt/mono/lib/monodevelop/bin/Mono.Addins.dll 0x8281a00: 2 (./MonoDevelop.exe:11452): Mono-WARNING **: The request to load the assembly mscorlib v1.0.5000.0 was remapped to v2.0.0.0 Mono-INFO: Assembly Ref addref Mono.Addins 0x8284438 -> mscorlib 0x82244c0: 5 Mono-INFO: Assembly Mono.Addins 0x8284438 added to domain MonoDevelop.exe, ref_count=1 Mono-INFO: AOT failed to load AOT module /opt/mono/lib/monodevelop/bin/Mono.Addins.dll.so: /opt/mono/lib/monodevelop/bin/Mono.Addins.dll.so: cannot open shared object file: No such file or directory Mono-INFO: Assembly Loader loaded assembly from location: '/opt/mono/lib/monodevelop/bin/Mono.Addins.dll'. Mono-INFO: Config attempting to parse: '/opt/mono/lib/monodevelop/bin/Mono.Addins.dll.config'. Mono-INFO: Config attempting to parse: '/opt/mono/etc/mono/assemblies/Mono.Addins/Mono.Addins.config'. Mono-INFO: Config attempting to parse: '/home/pupeno/.mono/assemblies/Mono.Addins/Mono.Addins.config'. Mono-INFO: Assembly Ref addref MonoDevelop.Core 0x827d238 -> Mono.Addins 0x8284438: 2 Mono-INFO: Assembly Ref addref MonoDevelop 0x8262520 -> Mono.Addins 0x8284438: 3 (./MonoDevelop.exe:11452): Mono-WARNING **: The request to load the assembly System v1.0.5000.0 was remapped to v2.0.0.0 Mono-INFO: Assembly Loader probing location: '/opt/mono/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll'. Mono-INFO: Image addref System 0x8288b78 -> /opt/mono/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll 0x8285938: 2 Mono-INFO: Assembly Ref addref System 0x8288b78 -> mscorlib 0x82244c0: 6 Mono-INFO: Assembly System 0x8288b78 added to domain MonoDevelop.exe, ref_count=1 .......... From ZeljkoS at gemboxsoftware.com Sun Sep 9 16:07:03 2007 From: ZeljkoS at gemboxsoftware.com (Zeljko at GemBox Software) Date: Sun, 9 Sep 2007 22:07:03 +0200 Subject: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono Message-ID: <001901c7f31c$fda26260$f8e72720$@com> Hi, After customer request, we have modified our .NET component to work with Mono. To do so few minor changes were required and full rewrite of Random methods (since .NET Framework and Mono return different random values for the same seed). Now we have our GemBox.Spreadsheet 2.9 .NET component (see news at http://www.gemboxsoftware.com) natively working on Mono, and that allows mono developer base to use it for XLS, CSV and XLSX import/export. Free version of the component (it is limited to 150 rows) can be used in commercial products, so it is a great value. Regards, Zeljko GemBox Software www.GemBoxSoftware.com From achristov at inbox.com Mon Sep 10 07:39:44 2007 From: achristov at inbox.com (Alexander Christov) Date: Mon, 10 Sep 2007 14:39:44 +0300 Subject: [Mono-list] mono_mod fails Message-ID: <46E52D00.6070002@inbox.com> Hi All! Can anybody explain what? wrong with the mono_mod installation considering the following apache? error.log contents: [Mon Sep 10 13:05:39 2007] [notice] caught SIGTERM, shutting down [Mon Sep 10 13:05:39 2007] [warn] (22)Invalid argument: Failed to destroy the '/tmp/mod_mono_dashboard_XXGLOBAL_1' shared memory dashboard [Mon Sep 10 13:05:39 2007] [warn] (22)Invalid argument: Failed to destroy the '/tmp/mod_mono_dashboard_default_2' shared memory dashboard [Mon Sep 10 13:05:41 2007] [notice] Apache/2.2.3 (Linux/SUSE) configured -- resuming normal operations Unhandled Exception: System.ArgumentException: Should be something like [[hostname:]port:]VPath:realpath at Mono.WebServer.ApplicationServer.AddApplicationsFromCommandLine (System.String applications) [0x00000] at (wrapper remoting-invoke-with-check) Mono.WebServer.ApplicationServer:AddApplicationsFromCommandLine (string) at Mono.XSP.Server.Main (System.String[] args) [0x00000] Thanks! Alex Christov ____________________________________________________________ PREVENT ACCESSING DANGEROUS WEBSITES - Protect your computer with Free Web Security Guard! More information at http://www.inbox.com/wsg From jit at occams.info Mon Sep 10 08:44:05 2007 From: jit at occams.info (Joshua Tauberer) Date: Mon, 10 Sep 2007 08:44:05 -0400 Subject: [Mono-list] mono_mod fails In-Reply-To: <46E52D00.6070002@inbox.com> References: <46E52D00.6070002@inbox.com> Message-ID: <46E53C15.50302@occams.info> Alexander Christov wrote: > Can anybody explain what? wrong with the mono_mod installation > considering the following apache? error.log contents: > > [Mon Sep 10 13:05:39 2007] [notice] caught SIGTERM, shutting down > [Mon Sep 10 13:05:39 2007] [warn] (22)Invalid argument: Failed to > destroy the '/tmp/mod_mono_dashboard_XXGLOBAL_1' shared memory dashboard > [Mon Sep 10 13:05:39 2007] [warn] (22)Invalid argument: Failed to > destroy the '/tmp/mod_mono_dashboard_default_2' shared memory dashboard > [Mon Sep 10 13:05:41 2007] [notice] Apache/2.2.3 (Linux/SUSE) configured > -- resuming normal operations While I get this too, it seems to not be associated with any actual problem. > Unhandled Exception: System.ArgumentException: Should be something like > [[hostname:]port:]VPath:realpath Check that your MonoApplications Apache directive follows the indicated format hostname:port:virtual path:physical path, with the hostname and port optional. -- - Josh Tauberer http://razor.occams.info "Yields falsehood when preceded by its quotation! Yields falsehood when preceded by its quotation!" Achilles to Tortoise (in "G?del, Escher, Bach" by Douglas Hofstadter) From joansava at gmail.com Mon Sep 10 12:32:44 2007 From: joansava at gmail.com (=?UTF-8?Q?Jos=C3=A9_A._Salvador_Vanaclocha?=) Date: Mon, 10 Sep 2007 18:32:44 +0200 Subject: [Mono-list] Little Mono Addins documentation errata Message-ID: Hi, We are studying the mono addins architecture and we have found a little errata in the documentation, we think. Concretely at the host xml ExtensionNode element definition in the "Mono Addins Introduction" wich displays "... ..." where may be it would say "... ..." We show in uppercase the words we miss. Other way, the sample won't can "cut & paste" to get some mini application works with the mono addins aproach so the xml addin definition shows like this: " " This xml structure uses the xml node COMMAND miss at the addin host defintion. Excuse our bad english. -- Jos? A. Salvador Vanaclocha "Vana" Numenalia "La inspiraci?n existe, pero tiene que encontrarte trabajando" - Pablo Ruiz Picasso - PD: Si te he mandado algun documento que tu Micro$oft Word es INCAPAZ de abrir, hazte un favor y trabaja con un programa decente: http://es.openoffice.org/ From miguel at novell.com Mon Sep 10 01:36:45 2007 From: miguel at novell.com (Miguel de Icaza) Date: Mon, 10 Sep 2007 01:36:45 -0400 Subject: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono In-Reply-To: <001901c7f31c$fda26260$f8e72720$@com> References: <001901c7f31c$fda26260$f8e72720$@com> Message-ID: <1189402605.12243.186.camel@erandi.dom> Hello, > After customer request, we have modified our .NET component to work with > Mono. To do so few minor changes were required and full rewrite of Random > methods (since .NET Framework and Mono return different random values for > the same seed). This seems like an odd dependency to have (depending on the random number generator to have the same values). Is there a reason for that? Miguel From lluis at ximian.com Mon Sep 10 13:10:20 2007 From: lluis at ximian.com (Lluis Sanchez) Date: Mon, 10 Sep 2007 19:10:20 +0200 Subject: [Mono-list] Little Mono Addins documentation errata In-Reply-To: References: Message-ID: <1189444220.4354.4.camel@portador.site> El dl 10 de 09 del 2007 a les 18:32 +0200, en/na Jos? A. Salvador Vanaclocha va escriure: > Hi, > > We are studying the mono addins architecture and we have found a > little errata in the documentation, we think. > > Concretely at the host xml ExtensionNode element definition in the > "Mono Addins Introduction" wich displays > > "... > > > > ..." > > where may be it would say > > "... > > > > ..." > > We show in uppercase the words we miss. > > Other way, the sample won't can "cut & paste" to get some mini > application works with the mono addins aproach so the xml addin > definition shows like this: > > " > > > > > > > > > > > > " > > This xml structure uses the xml node COMMAND miss at the addin host defintion. You're right, thanks for noticing. It is now fixed. Lluis. From alan.mcgovern at gmail.com Mon Sep 10 13:25:32 2007 From: alan.mcgovern at gmail.com (Alan McGovern) Date: Mon, 10 Sep 2007 18:25:32 +0100 Subject: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono In-Reply-To: <1189402605.12243.186.camel@erandi.dom> References: <001901c7f31c$fda26260$f8e72720$@com> <1189402605.12243.186.camel@erandi.dom> Message-ID: <117799f00709101025g3b1e45ateef061408d2a369f@mail.gmail.com> If you need the same numbers for a given seed, why are you using a random number generator? If you need reproducible pseudo-random numbers then you could just SHA1 has your seed, which gives you 20 bytes (4 integers). Then if you need more numbers, SHA1 hash the result from the previous operation to get a new set of 20 bytes (4 integers) and keep going until you have all the numbers you need. This is guaranteed to produce the same psuedo-random numbers on every platform every time. Alan. On 9/10/07, Miguel de Icaza wrote: > > Hello, > > > After customer request, we have modified our .NET component to work with > > Mono. To do so few minor changes were required and full rewrite of > Random > > methods (since .NET Framework and Mono return different random values > for > > the same seed). > > This seems like an odd dependency to have (depending on the random > number generator to have the same values). > > Is there a reason for that? > > Miguel > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070910/c454fbb6/attachment.html From sebastien.pouliot at gmail.com Mon Sep 10 13:39:07 2007 From: sebastien.pouliot at gmail.com (Sebastien Pouliot) Date: Mon, 10 Sep 2007 13:39:07 -0400 Subject: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono In-Reply-To: <117799f00709101025g3b1e45ateef061408d2a369f@mail.gmail.com> References: <001901c7f31c$fda26260$f8e72720$@com> <1189402605.12243.186.camel@erandi.dom> <117799f00709101025g3b1e45ateef061408d2a369f@mail.gmail.com> Message-ID: <1189445948.16493.263.camel@poupou.home> My understanding is that the issue is solved but here's my two cents anyway... Using SHA1 is *heavyweight* (CPU) for the job of getting "regular" randomness. A lot of faster algorithms are available to do so. E.g. You could copy Mono's Random implementation (MIT licensed) and execute it under any runtime (MS included). If you need more than "regular" (which I doubt in your case) while still keeping a replicable stream then using a HMAC (like HMAC-SHA1) would be more suited for the task (than SHA1 alone). Sebastien On Mon, 2007-09-10 at 18:25 +0100, Alan McGovern wrote: > If you need the same numbers for a given seed, why are you using a > random number generator? If you need reproducible pseudo-random > numbers then you could just SHA1 has your seed, which gives you 20 > bytes (4 integers). Then if you need more numbers, SHA1 hash the > result from the previous operation to get a new set of 20 bytes (4 > integers) and keep going until you have all the numbers you need. This > is guaranteed to produce the same psuedo-random numbers on every > platform every time. > > Alan. > > On 9/10/07, Miguel de Icaza wrote: > Hello, > > > After customer request, we have modified our .NET component > to work with > > Mono. To do so few minor changes were required and full > rewrite of Random > > methods (since .NET Framework and Mono return different > random values for > > the same seed). > > This seems like an odd dependency to have (depending on the > random > number generator to have the same values). > > Is there a reason for that? > > Miguel > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list From lluis at ximian.com Mon Sep 10 14:56:37 2007 From: lluis at ximian.com (Lluis Sanchez) Date: Mon, 10 Sep 2007 20:56:37 +0200 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day Message-ID: <1189450597.4354.10.camel@portador.site> If you found some annoying bugs in MonoDevelop that you'd like to get fixed in the next release. If you reported some bugs which are not yet fixed maybe because we've not been able to reproduce them. If you want to help in tracking down some of the issues that MD has... please join us next friday (September 14th) in the #monodevelop IRC channel (in irc.gimp.org) for an interactive and intense bug hunting effort. MonoDevelop is approaching the beta 1 release, which should happen by the end of the month, so this is a chance for helping the development team in tracking down and fixing MonoDevelop issues. Thanks to all! Lluis. From monodanmorg at yahoo.com Mon Sep 10 15:09:25 2007 From: monodanmorg at yahoo.com (Daniel Morgan) Date: Mon, 10 Sep 2007 12:09:25 -0700 (PDT) Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <1189450597.4354.10.camel@portador.site> Message-ID: <855741.83549.qm@web30811.mail.mud.yahoo.com> I understand this maybe low-priority for you, but I would like to see it fixed - get MonoDevelop to build and run on Win32 - at least console projects building and running out-of-the-box would be nice. I think it would be a stretch to ask for the asp.net and gtk# designers to work too -- however I would not complain if someone did get these to work on Win32 too. :-) Another request: improve database support. Remove hard references to the data providers in the MonoQuery add-in. Will the GSoC changes that were done via MonoDevelop.Database be integrated? If so, will MonoDevelop be removed? Just curious. --- Lluis Sanchez wrote: > If you found some annoying bugs in MonoDevelop that > you'd like to get > fixed in the next release. > > If you reported some bugs which are not yet fixed > maybe because we've > not been able to reproduce them. > > If you want to help in tracking down some of the > issues that MD has... > > please join us next friday (September 14th) in the > #monodevelop IRC > channel (in irc.gimp.org) for an interactive and > intense bug hunting > effort. > > MonoDevelop is approaching the beta 1 release, which > should happen by > the end of the month, so this is a chance for > helping the development > team in tracking down and fixing MonoDevelop issues. > ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/ From lluis at ximian.com Mon Sep 10 16:00:06 2007 From: lluis at ximian.com (Lluis Sanchez) Date: Mon, 10 Sep 2007 22:00:06 +0200 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <855741.83549.qm@web30811.mail.mud.yahoo.com> References: <855741.83549.qm@web30811.mail.mud.yahoo.com> Message-ID: <1189454406.4354.15.camel@portador.site> El dl 10 de 09 del 2007 a les 12:09 -0700, en/na Daniel Morgan va escriure: > I understand this maybe low-priority for you, but I > would like to see it fixed - get MonoDevelop to build > and run on Win32 - at least console projects building > and running out-of-the-box would be nice. > > I think it would be a stretch to ask for the asp.net > and gtk# designers to work too -- however I would not > complain if someone did get these to work on Win32 > too. :-) Win32 support is down in the priority list, and I don't think we'll have time to spend on it. > > Another request: improve database support. Remove > hard references to the data providers in the MonoQuery > add-in. Will the GSoC changes that were done via > MonoDevelop.Database be integrated? If so, will > MonoDevelop be removed? Just curious. The new MonoDevelop.Database add-in is going to replace MonoQuery, and I hope we can include it in the next release. Data providers are now implemented as add-ins, so there are no hard references anymore. Lluis. > > --- Lluis Sanchez wrote: > > > If you found some annoying bugs in MonoDevelop that > > you'd like to get > > fixed in the next release. > > > > If you reported some bugs which are not yet fixed > > maybe because we've > > not been able to reproduce them. > > > > If you want to help in tracking down some of the > > issues that MD has... > > > > please join us next friday (September 14th) in the > > #monodevelop IRC > > channel (in irc.gimp.org) for an interactive and > > intense bug hunting > > effort. > > > > MonoDevelop is approaching the beta 1 release, which > > should happen by > > the end of the month, so this is a chance for > > helping the development > > team in tracking down and fixing MonoDevelop issues. > > > > > > ____________________________________________________________________________________ > Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. > http://farechase.yahoo.com/ > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list From austin at tradelogic.com Mon Sep 10 16:07:13 2007 From: austin at tradelogic.com (Austin Winstanley) Date: Mon, 10 Sep 2007 15:07:13 -0500 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <1189450597.4354.10.camel@portador.site> References: <1189450597.4354.10.camel@portador.site> Message-ID: <527a90a10709101307g1284f41x1ee12fcb64051944@mail.gmail.com> How about getting Regions to work? What are the thoughts on this? It would be a great help for organizing large amounts of code... -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070910/aae79c8b/attachment.html From lluis at ximian.com Mon Sep 10 16:22:25 2007 From: lluis at ximian.com (Lluis Sanchez) Date: Mon, 10 Sep 2007 22:22:25 +0200 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <527a90a10709101307g1284f41x1ee12fcb64051944@mail.gmail.com> References: <1189450597.4354.10.camel@portador.site> <527a90a10709101307g1284f41x1ee12fcb64051944@mail.gmail.com> Message-ID: <1189455745.4354.21.camel@portador.site> El dl 10 de 09 del 2007 a les 15:07 -0500, en/na Austin Winstanley va escriure: > How about getting Regions to work? What are the thoughts on this? It > would be a great help for organizing large amounts of code... I'm sure it is useful, but that's not a bug, but a missing feature. Lluis. > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list From austin at tradelogic.com Mon Sep 10 16:21:47 2007 From: austin at tradelogic.com (Austin Winstanley) Date: Mon, 10 Sep 2007 15:21:47 -0500 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <1189455745.4354.21.camel@portador.site> References: <1189450597.4354.10.camel@portador.site> <527a90a10709101307g1284f41x1ee12fcb64051944@mail.gmail.com> <1189455745.4354.21.camel@portador.site> Message-ID: <527a90a10709101321xccd1b30w7162cbc6fa5e4687@mail.gmail.com> Ok, well, while I understand it's not going to be in this release, is there any plans to implement Regions at some point? On 9/10/07, Lluis Sanchez wrote: > > El dl 10 de 09 del 2007 a les 15:07 -0500, en/na Austin Winstanley va > escriure: > > How about getting Regions to work? What are the thoughts on this? It > > would be a great help for organizing large amounts of code... > > I'm sure it is useful, but that's not a bug, but a missing feature. > > Lluis. > > > _______________________________________________ > > Mono-list maillist - Mono-list at lists.ximian.com > > http://lists.ximian.com/mailman/listinfo/mono-list > > -- Thanks, Austin Winstanley Tradelogic Software Group 512.699.6674 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ximian.com/pipermail/mono-list/attachments/20070910/fd30c6c6/attachment.html From lluis at ximian.com Mon Sep 10 16:34:02 2007 From: lluis at ximian.com (Lluis Sanchez) Date: Mon, 10 Sep 2007 22:34:02 +0200 Subject: [Mono-list] Sept 14th: MonoDevelop Bug Day In-Reply-To: <527a90a10709101321xccd1b30w7162cbc6fa5e4687@mail.gmail.com> References: <1189450597.4354.10.camel@portador.site> <527a90a10709101307g1284f41x1ee12fcb64051944@mail.gmail.com> <1189455745.4354.21.camel@portador.site> <527a90a10709101321xccd1b30w7162cbc6fa5e4687@mail.gmail.com> Message-ID: <1189456442.4354.25.camel@portador.site> El dl 10 de 09 del 2007 a les 15:21 -0500, en/na Austin Winstanley va escriure: > Ok, well, while I understand it's not going to be in this release, is > there any plans to implement Regions at some point? Yes, it's in the plan, but not for MD 1.0. > > > > On 9/10/07, Lluis Sanchez wrote: > El dl 10 de 09 del 2007 a les 15:07 -0500, en/na Austin > Winstanley va > escriure: > > How about getting Regions to work? What are the thoughts on > this? It > > would be a great help for organizing large amounts of > code... > > I'm sure it is useful, but that's not a bug, but a missing > feature. > > Lluis. > > > _______________________________________________ > > Mono-list maillist - Mono-list at lists.ximian.com > > http://lists.ximian.com/mailman/listinfo/mono-list > > > > > -- > Thanks, > Austin Winstanley > Tradelogic Software Group > 512.699.6674 > _______________________________________________ > Mono-list maillist - Mono-list at lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list From daubers at gmail.com Mon Sep 10 16:50:50 2007 From: daubers at gmail.com (Matthew Daubney) Date: Mon, 10 Sep 2007 21:50:50 +0100 Subject: [Mono-list] SCP Message-ID: <46E5AE2A.2080506@gmail.com> Hey all, is there a way to send files using SCP in C#? If not, then is there an SFTP or something similar alternative? Thanks for any advice, Matt Daubney From maitredede at gmail.com Mon Sep 10 17:00:21 2007 From: maitredede at gmail.com (Damien DALY) Date: Mon, 10 Sep 2007 23:00:21 +0200 Subject: [Mono-list] SCP In-Reply-To: <46E5AE2A.2080506@gmail.com> References: <46E5AE2A.2080506@gmail.com> Message-ID: <6df580e50709101400x50368445m3e8dd28ece0af093@mail.gmail.com> 2007/9/10, Matthew Daubney : > Hey all, > is there a way to send files using SCP in C#? If not, then is there an > SFTP or something similar alternative? Hi, I've searched for such libs (to do SSH) and I've found 2 libs : http://granados.sourceforge.net/ http://www.tamirgal.com/home/dev.aspx?Item=SharpSsh :o) D?d? From robertj at gmx.net Mon Sep 10 10:06:27 2007 From: robertj at gmx.net (Robert Jordan) Date: Mon, 10 Sep 2007 16:06:27 +0200 Subject: [Mono-list] mono_mod fails In-Reply-To: <46E52D00.6070002@inbox.com> References: <46E52D00.6070002@inbox.com> Message-ID: Alexander Christov wrote: > Hi All! > > Can anybody explain what? wrong with the mono_mod installation > considering the following apache? error.log contents: Please post your mod_mono config, especially the part where applications are configured. Robert From joansava at gmail.com Tue Sep 11 03:43:33 2007 From: joansava at gmail.com (=?UTF-8?Q?Jos=C3=A9_A._Salvador_Vanaclocha?=) Date: Tue, 11 Sep 2007 09:43:33 +0200 Subject: [Mono-list] ToolButton and ToolSeparator xml element at Mono Addins Message-ID: Hi all, I have been reading all documents about Mono Adddins I find. It seems an excellent framework to acomplish a trully plugeable architecture in an applicattion. However I found some doubts around it. So in the reference manual exists very references to ToolButton and ToolSeparator xml element which are being used at monodevelop too. In fact, the reference manual shows paragraphs like this: "The add-in engine ensures that if insertafter is specified..." showing a very close relation between these xml attributes and nodes and the framework engine However I can not find these classes at the mono addins assemblies