Re: [Mono-list] open sourcing all of Microsoft .net

2013-09-06 Thread Mike Christensen
as there's no other companies of > our size using it to the scale we use java, but if a Microsoft backed .net > made it to linux it may be an option (and I'm sure if ms open sourced it > mono would do most of the work to merge, ms would just need to stamp > approval) >

Re: [Mono-list] open sourcing all of Microsoft .net

2013-09-06 Thread Mike Christensen
I'm pretty sure it already is.. http://referencesource.microsoft.com/netframework.aspx On Wed, Sep 4, 2013 at 11:33 PM, nite wrote: > Has the case ever been made to Microsoft to open source all of .net? It's > heading that way, now even the asp.net stack is open. Not much to lose, as > it isn'

Re: [Mono-list] java parser in C#

2013-04-09 Thread Mike Christensen
For it to really be useful, you'd have to make the runtime run compiled Java code as well. Otherwise, you'd have to re-write all the libraries.. Honestly, I'd rather just write in C#. It's a way better language. On Sun, Apr 7, 2013 at 11:33 AM, mutasim wrote: > Good Day > > i think mono C# c

Re: [Mono-list] java parser in C#

2013-04-07 Thread Mike Christensen
For it to really be useful, you'd have to make the runtime run compiled Java code as well. Otherwise, you'd have to re-write all the libraries.. Honestly, I'd rather just write in C#. It's a way better language. On Sun, Apr 7, 2013 at 11:33 AM, mutasim wrote: > Good Day > > i think mono C# c

Re: [Mono-list] Oracle Managed Data Provider (ODP.NET)

2012-10-23 Thread Mike Christensen
Wonder if the DevArt drivers run on Mono.. On Mon, Oct 22, 2012 at 10:32 AM, Daniel Morgan wrote: > Hey Paco. Long time no see. > > I added the feature requests for mono and a fully managed odp.net driver. > The fully managed driver isn't so fully managed after all. There are > DllImports to k

Re: [Mono-list] XBuild question removing directories

2011-12-22 Thread Mike Christensen
; The bad news is that probably doesn't help you. > > I was writing my own tasks, so I just included the updated source code in my > assembly and called it RemoveDirFixed.  Not sure if you have the same > luxury. > > Jonathan > > > > On 12/22/2011 12:20 AM,

[Mono-list] XBuild question removing directories

2011-12-21 Thread Mike Christensen
I have the following target: When I run it I get: ~/KitchenPC> ./clean XBuild Engine Version 2.10.6.0 Mono, Version 2.10.6.0 Copyright (C) Marek Sieradzki 2005-2008, Novell 2008-2011. /Users/mike/kitchenpc/build.xml: error : Directory /Users/mi

Re: [Mono-list] Is OS/X case-sensitive?

2011-12-20 Thread Mike Christensen
be worth filing a bug > against it. > > Alan > > > On 20 December 2011 05:34, Abe Gillespie wrote: >> >> >> http://monodevelop.com/Download/Release_Notes/Release_Notes_for_MonoDevelop_2.8.5, >> fourth bullet item. >> >> On Mon, Dec 19, 2011 at 9

[Mono-list] Recursively copy files in XBuild

2011-12-19 Thread Mike Christensen
I have the following set of files with XBuild: I then copy all of it over to another directory: However, what I want to do is copy `*.js`, and copy `/yui/*.*`. What I tried doing is: However, what this does is flatten the `/yui/` directory and put all of yui's files directly i

[Mono-list] Is OS/X case-sensitive?

2011-12-19 Thread Mike Christensen
It seems to me that in recent builds of Mono, the XSP webserver is now case-insensitive on OS/X - which I believe is by design since this file system (by default) is case insensitive. However, XBuild still seems to be case-sensitive on OS/X. Will this be changed as well? Thanks! Mike __

Re: [Mono-list] MonoDevelop 2.8 released

2011-10-05 Thread Mike Christensen
out 5 minutes. > > On Wed, Oct 5, 2011 at 12:15 PM, Mike Christensen wrote: > >> Wow! Didn't 2.6 just come out like an hour ago? >> On Oct 5, 2011 10:04 AM, "Lluis Sanchez Gual" >> wrote: >> > The MonoDevelop team is proud to announce the release of

Re: [Mono-list] MonoDevelop 2.8 released

2011-10-05 Thread Mike Christensen
Wow! Didn't 2.6 just come out like an hour ago? On Oct 5, 2011 10:04 AM, "Lluis Sanchez Gual" wrote: > The MonoDevelop team is proud to announce the release of MonoDevelop 2.8. > > MonoDevelop is an IDE primarily designed for C# and other .NET languages. MonoDevelop enables developers to quickly

Re: [Mono-list] follow up question about tools used: source code control?

2011-09-22 Thread Mike Christensen
> We use Github at Adzerk to host our source code control. What are people > using out there? > If you are using Visual Studio, are you also using the "Team" system? I'm using Subversion, which runs on a Linux server. I use Visual Studio for development, and I also have an enlistment on a Linux b

Re: [Mono-list] [MonoDevelop] MonoDevelop 2.6 released

2011-09-17 Thread Mike Christensen
> The MonoDevelop team is proud to announce the release of MonoDevelop 2.6. > > MonoDevelop is an IDE primarily designed for C# and other .NET languages. > MonoDevelop enables developers to quickly write desktop and ASP.NET Web > applications on Linux, Windows and Mac OSX. MonoDevelop makes it easy

Re: [Mono-list] Works on Windows, TypeLoadException on OS X ?

2011-08-13 Thread Mike Christensen
Is the file called disco.dll? Note this is case sensitive on non-Windows platforms, so it will not find Disco.dll. On Sat, Aug 13, 2011 at 7:34 AM, Charles Rich wrote: > When I execute "mono disco.exe" (http://dl.dropbox.com/u/12370141/disco.exe) > on both Windows 7 and OS X 10.6.8 with Mono 2.6

[Mono-list] Dictionary<> key'ed by Decimal works differently between Mono and .NET

2011-08-04 Thread Mike Christensen
I'm trying to get my unit tests to pass so I can try out my code on Mono, however I ran into some different behavior using the Dictionary<> class. I've written a stand-alone test case to illustrate the problem. http://pastie.org/2318806 The code will print out "True" on .NET and "False" on Mono.

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
the old way of doing thing, the CreateItem task. > > http://msdn.microsoft.com/en-us/library/s2y3e43x.aspx > > Jonathan > > > On 8/3/2011 8:29 PM, Mike Christensen wrote: >> >> What's the best way to port this code over: >> >>   >> >

Re: [Mono-list] RemoveDir - XBuild vs MSBuild

2011-08-04 Thread Mike Christensen
https://bugzilla.novell.com/show_bug.cgi?id=710234 https://bugzilla.novell.com/show_bug.cgi?id=710238 These bugs will still get a home with Novell no longer in the picture, correct? Mike On Wed, Aug 3, 2011 at 7:09 PM, Mike Christensen wrote: > I'll get this filed right away, thank

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
g to get a Mono enlistment setup, but maybe I can help out when I'm running. xbuild seems like a great project to contribute to. Mike On Thu, Aug 4, 2011 at 12:51 AM, Mike Christensen wrote: > This won't work because I include items that are not yet created until > after the target runs

Re: [Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-04 Thread Mike Christensen
way of doing thing, the CreateItem task. > > http://msdn.microsoft.com/en-us/library/s2y3e43x.aspx > > Jonathan > > > On 8/3/2011 8:29 PM, Mike Christensen wrote: >> >> What's the best way to port this code over: >> >>   >> >> ** Bunch of

Re: [Mono-list] RemoveDir - XBuild vs MSBuild

2011-08-03 Thread Mike Christensen
Mike, > This seems to be a bug. Please file this, and as a workaround try adding a > Condition attribute with an Exists check: > http://msdn.microsoft.com/en-us/library/7szfhaft.aspx > Something like: > > Thanks, > Jonathan > > On Wed, Aug 3, 2011 at 9:13 PM, Mike Christe

[Mono-list] Porting MSBuild script to XBuild with ItemGroup

2011-08-03 Thread Mike Christensen
What's the best way to port this code over: ** Bunch of stuff here ** If I run this, I get the error: : error : Error initializing task ItemGroup: Not registered task ItemGroup. Which I believe is a known limitation in XBuild. However, if I move the I

[Mono-list] RemoveDir - XBuild vs MSBuild

2011-08-03 Thread Mike Christensen
I'm trying to port an MSBuild script to XBuild and running into the following issue: This crashes and stops building if Imp/bin does not exist. On MSBuild, it will just do nothing and ignore the command. Is this a bug? Is there any way I can say "delete the directory if it exists?" Thanks!

Re: [Mono-list] Running Monodevelop on KDE?

2011-08-01 Thread Mike Christensen
On Mon, Aug 1, 2011 at 5:20 PM, Mike Christensen wrote: > On Mon, Aug 1, 2011 at 5:18 PM, Bojan Rajkovic wrote: > >> On Aug 1, 2011, at 8:12 PM, Mike Christensen wrote: >> >> Basically here's what I get with ./configure - I'm running KDE, so I just >>

Re: [Mono-list] Running Monodevelop on KDE?

2011-08-01 Thread Mike Christensen
On Mon, Aug 1, 2011 at 5:18 PM, Bojan Rajkovic wrote: > On Aug 1, 2011, at 8:12 PM, Mike Christensen wrote: > > Basically here's what I get with ./configure - I'm running KDE, so I just > want to make sure I don't have to change some config option for this.

Re: [Mono-list] Running Monodevelop on KDE?

2011-08-01 Thread Mike Christensen
profile = default Packages included in the build: main On Mon, Aug 1, 2011 at 5:09 PM, Mike Christensen wrote: > Is there anything special you have to do to get Monodevelop to run on KDE > on openSUSE? > > The default seems to be GNOME support, but I couldn't find an

[Mono-list] Running Monodevelop on KDE?

2011-08-01 Thread Mike Christensen
Is there anything special you have to do to get Monodevelop to run on KDE on openSUSE? The default seems to be GNOME support, but I couldn't find any documentation on any command line parameters or build options related to KDE.. Thanks! Mike ___ Mono-l

Re: [Mono-list] Do you need to have Mono installed before you can build it?

2011-07-21 Thread Mike Christensen
> I'm getting the error: > > make[6]: Entering directory `/home/mike/mono/mcs' > make[6]: gmcs: Command not found > make[6]: *** [build/deps/basic-profile-check.exe] Error 127 > make[6]: Leaving directory `/home/mike/mono/mcs' > *** The compiler 'gmcs' doesn't appear to be usable. > *** You need Mo

[Mono-list] Do you need to have Mono installed before you can build it?

2011-07-21 Thread Mike Christensen
I'm getting the error: make[6]: Entering directory `/home/mike/mono/mcs' make[6]: gmcs: Command not found make[6]: *** [build/deps/basic-profile-check.exe] Error 127 make[6]: Leaving directory `/home/mike/mono/mcs' *** The compiler 'gmcs' doesn't appear to be usable. *** You need Mono version 2.4

Re: [Mono-list] MonoTouch/MonoDroid now licensed by Xamarin?

2011-07-20 Thread Mike Christensen
Excellent! This was the exact outcome I was hoping for.. On Wed, Jul 20, 2011 at 2:00 PM, Stifu wrote: > Yes. > Taking ownership. > Yes (although they'll merge some work they did). > Yes. > > See: http://tirania.org/blog/archive/2011/Jul-18.html > > > Mike

[Mono-list] MonoTouch/MonoDroid now licensed by Xamarin?

2011-07-20 Thread Mike Christensen
http://blog.xamarin.com/2011/07/18/first-press-release/ So will Xamarin take over further development of MonoTouch and MonoDroid? Are they licensing the code from AttachMate, or did they essentially take ownership of this code base? Does that mean they'll no longer be working on their own releas

Re: [Mono-list] future of Mono

2011-05-30 Thread Mike Christensen
I, for one, after hearing that Attachmate was firing the Mono team thought "Well crap, that's game over for Mono - that was fun while it lasted.." But during the past few weeks learning about the new company formed and how all the old principals have joined, now I'm saying "Sweet this is the best

Re: [Mono-list] Suitability of Mono

2011-05-21 Thread Mike Christensen
gain in doing that, and possibly > the opposite: customers bitching about how they paid for a product that > turned free a little while later. > > > Mike Christensen-2 wrote: >> >> On Fri, May 20, 2011 at 5:25 PM, jmalcolm <malcolm.jus...@gmail.com> >> wrote: &

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Mike Christensen
On Fri, May 20, 2011 at 5:25 PM, jmalcolm wrote: > > Mike Christensen-2 wrote: >> >> Are the iOS and Android Mono Frameworks that Xamarin is creating a >> totally different code-base from MonoTouch and MonoDroid?  What has >> become of the formerly Novell owned

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Mike Christensen
On Fri, May 20, 2011 at 4:38 PM, Bojan Rajkovic wrote: > On May 20, 2011, at 7:08 PM, Mike Christensen wrote: > >> Sorry to hi-jack the thread, just a quick question.. >> >> Are the iOS and Android Mono Frameworks that Xamarin is creating a >> totally differen

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Mike Christensen
Sorry to hi-jack the thread, just a quick question.. Are the iOS and Android Mono Frameworks that Xamarin is creating a totally different code-base from MonoTouch and MonoDroid? What has become of the formerly Novell owned MonoTouch/Droid products? Are those just being scrapped completely? If t

[Mono-list] C# 5.0 Async programming video

2011-04-19 Thread Mike Christensen
For anyone interested in async features scheduled for the next version of C# and VB, this was a pretty cool video.. It kinda makes my brain hurt a bit though.. http://channel9.msdn.com/Events/PDC/PDC10/FT09 For extra points, try to count how many times the speaker uses the phrase "if you will"..

Re: [Mono-list] HTML Parser in Mono

2011-04-17 Thread Mike Christensen
Here's another one I came across, though I haven't used it.. http://www.majestic12.co.uk/projects/html_parser.php Says it works well on Mono though.. Mike On Sun, Apr 17, 2011 at 6:37 AM, Alex wrote: > Hi, > > I think HTML Agility Pack will do what you want: > http://htmlagilitypack.codeplex.c

Re: [Mono-list] logging to remote syslog servers

2011-02-10 Thread Mike Christensen
> I have been able to log requests to the local syslog server just fine. How > to I edit my code to send the logs to a remote syslog server? Also, is there > a way to change what computer name is sent to the syslog? We will be using > this program in a Netboot environment for our Mac build process

Re: [Mono-list] Site downloads section incompatible with IE

2011-01-05 Thread Mike Christensen
> This is not software-related at all, just noticed that the Mono website's > downloads section ( http://www.go-mono.com/mono-downloads/download.html > http://www.go-mono.com/mono-downloads/download.html ) doesn't work with > Internet Explorer... > > If you try to click on one platform's icons, it

Re: [Mono-list] Microsoft Solver Foundation 3.0

2011-01-04 Thread Mike Christensen
A friend of mine is the lead engineer on that product (also one of the smartest guys I've ever met).. So if any questions or issues were to arise in such a port, I'd have a connection. I looked into using it for my website (which figures out recipes based on what ingredients you have), however I

Re: [Mono-list] graffic interface

2010-09-01 Thread Mike Christensen
A lot of that wouldn't be too terribly hard to do with XAML/Moonlight.. 2010/9/1 Juan Carlos Ferrández : > > Hiya! > > I´ve been working on a kind of multimedia centre lately, developing > different audio and video reproduction options, online newspapers reading, > etc. The thing is that, as a beg

Re: [Mono-list] String comparisons slow

2010-07-20 Thread Mike Christensen
Is there a release date for 2.8? Also, how does the 2.8 GC (I realize it's only a beta) compare with the .NET GC? Mike On Tue, Jul 20, 2010 at 11:19 PM, Stifu wrote: > > There has been performance improvements since Mono 2.0. You may get better > results with Mono 2.6. Or if you're not in a hur

[Mono-list] [Blatant Alias Abuse] Anyone want to help out with a coding problem?

2010-06-17 Thread Mike Christensen
Hi all – I apologize for the misuse of this alias, but I figured I have the audience that might be interested in helping me out with a rather difficult coding problem. In fact, if I can find someone who’s looking for some part-time work and is interested in a bit of extra cash, then it’ll be worth

Re: [Mono-list] [MonoDevelop] MonoDevelop 2.4 released

2010-06-16 Thread Mike Christensen
+1 to an easy way to install this on Ubuntu 10.04.. Also, it looks like my major gripes with the Immediate window are still there.. - No declaration of variables: > int x = 5; EOF expected > Button b = new Button() EOF expected - No calling of methods: > a 7 > a.GetType() Evaluation failed. >

[Mono-list] Mono with OpenID? Anyone done it?

2010-05-10 Thread Mike Christensen
I'm curious if anyone has built a site on Mono and provided OpenID logon abilities. Does the DotNetOpenAuth library work well under Mono? Anything I should watch out for? I don't need any of those fancy ASP.NET controls, my stuff is all static HTML with JSON calls so I just need to call into the

Re: [Mono-list] MonoDevelop 2.4 Beta 1 released

2010-05-06 Thread Mike Christensen
This is awesome, I just installed this on my Mac and looks very good. No glaring bugs or anything. I have a few questions about the Immediate window. It seems to be read-only. First off, I cannot declare a new variable: > string s = "Hello"; EOF expected Second, if I change an existing variabl

[Mono-list] Anyone want to write this for MonoDevelop?

2010-03-05 Thread Mike Christensen
I gotta admit this is pretty cool. Someone wrote an extension for VS2010 that visualizes the garbage collector (which objects are reachable by what) using DGML.. http://blogs.msdn.com/mohamedg/archive/2010/03/02/visual-gcroot-via-dgml.aspx Mike ___ Mon

Re: [Mono-list] Powershell over Linux

2010-03-01 Thread Mike Christensen
I'll take a quick stab at answering this, though I'm far from a PowerShell expert.. The main question is "what's so special about PowerShell" and why is it any better than Bash or what not. I think the primary factor is PowerShell is not a command line interpretter but an actual CLR host itself (

[Mono-list] Moonlight Unit Testing/Code Coverage Tools

2010-01-08 Thread Mike Christensen
I'm looking for any existing unit testing (Like NUnit) or Code Coverage tools that could be used to test an API library written to run on the Silverlight/Moonlight DLRs. Anything out there already? Mike ___ Mono-list maillist - Mono-list@lists.ximian.

[Mono-list] MonoDevelop 2.2 on OS/X problems

2010-01-03 Thread Mike Christensen
I just got around to installing MonoDevelop 2.2 and Mono 2.6 (Both using the Disk Images) and am having several problems with web applications. 1) Running with soft debugger usually does not work. One of three things happens (at random): The web browser is never launched but the application appea

Re: [Mono-list] ASP.NET C# development on Mac ?

2009-12-10 Thread Mike Christensen
Did you guys ever get the MonoDevelop debugger working on xsp on OS/X? On Thu, Dec 10, 2009 at 9:54 AM, Michael Hutchinson < m.j.hutchin...@gmail.com> wrote: > On Thu, Dec 10, 2009 at 3:42 AM, Austerus wrote: > > > > Hey Cygon and thanks a lot for the reply. > > > > I will try it with xsp alone

Re: [Mono-list] Sites Using Mono

2009-11-22 Thread Mike Christensen
If I'm not mistaken here, I think this thread is basically boiling down to a trust issue; OP, please correct me if I'm wrong. People /want/ to see some huge site such as ebay or something written totally on Mono so they at least know "Hey yes that's possible to do, I can commit to that technology

Re: [Mono-list] How do I force a garbage collection / free a heap

2009-11-16 Thread Mike Christensen
18 megs.. If I don't run GC.Collect(), I see the 500 megs sitting around for quite some time.. Since this is simply a web site start-up routing, I think this is the best way to go.. Mike On Sun, Nov 15, 2009 at 8:11 PM, Michael Hutchinson wrote: > On Sun, Nov 15, 2009 at 7:04 PM,

[Mono-list] How do I force a garbage collection / free a heap

2009-11-15 Thread Mike Christensen
Hi all - I have a program that generates some results, but in order to do so it must load a whole lotta stuff into memory for calculations. When this is done, I only need the results and not the data in memory. This data might be several hundred megs on the heap or more. When I'm done, I want t

Re: [Mono-list] Android

2009-11-04 Thread Mike Christensen
Yes, there will be a core Silverlight framework (a Mini .NET if you will) that will be the same on browser and mobile and then extensions specific to mobile that will provide access to phone level hardware like touch, GPS, camera, etc. One person mentioned that being able to write a program once a

Re: [Mono-list] Android

2009-11-04 Thread Mike Christensen
Well the Windows Mobile 7 platform will be centered around the Silverlight runtime. I would suggest positioning Mono/Android in a similar strategy. On Tue, Nov 3, 2009 at 11:27 PM, Stifu wrote: > > The Mono guys put a theme interface in place for WinForms, which could be > used to make WinForms

Re: [Mono-list] [Mono-aspnet-list] sqlite questions?

2009-11-03 Thread Mike Christensen
I'll just have to chime in here and recommend at least taking a brief look at PostgreSQL as well. I tried it out a while back and haven't gone back to either MS SQL or MySQL since.. You'll have no problems getting Mono code to talk with it either. On Tue, Nov 3, 2009 at 12:35 AM, william leader

[Mono-list] Will there be an easy way to install MonoDevelop 2.2 on Ubuntu

2009-11-02 Thread Mike Christensen
Hi - When MonoDevelop 2.2 is released, will there be an easy way to install this on Ubuntu, or will the only way be to download the sources and build? I tried building from the trunk, however I ran into an endless maze of dependencies and gave up after about 2 hours. Thanks! Mike ___

Re: [Mono-list] Is Mono serious? Is Mono still alive?

2009-11-02 Thread Mike Christensen
A few comments: First, I think Mono is a fantastic platform that's making huge advances with each release. However, it simply doesn't compare with Microsoft .NET. The .NET Framework has hundreds of people working on it, a near unlimited budget, and is the obvious choice for running .NET code. I

Re: [Mono-list] Does mono support VC++

2009-10-20 Thread Mike Christensen
Hi - I believe you are mistaken in your terminology. There is no such thing as a "VC++ DLL" or "DLL based on VC++ code". Mono is a framework designed to run managed IL code, which is a CPU agnostic instruction set designed to be cross-platform. A DLL compiled from VC++ code is x86/x64 assembly

Re: [Mono-list] MonoDevelop 2.2 Beta 2 released

2009-10-14 Thread Mike Christensen
Will MonoDevelop 2.2 (final release) support the debugging of Mono web applications on OS/X? Or will that remain only supported on Linux? Thanks! Mike On Wed, Oct 14, 2009 at 12:03 PM, Lluis Sanchez Gual wrote: > The MonoDevelop team is proud to announce the release of MonoDevelop 2.2 > Beta 2

Re: [Mono-list] Mono and MonoDevelop on Linux vs. Windows vs. MacOS

2009-06-26 Thread Mike Christensen
Last I tried MonoDevelop on OS/X, it didn't work very well at all (this was 4-5mon ago I believe).. However, hopefully there's been some improvement.. I'd recommend OpenSUSE as the ideal platform, and I think you can just download a VMWare image and boot it on up - super simple.. I'm still develo

[Mono-list] CLR 4 Garbage Collector video

2009-05-29 Thread Mike Christensen
Here's an interesting video outlining the upcoming GC changes in .NET 4.0.. It's not really Mono related, but perhaps some of the GC geeks out there will find it useful.. http://channel9.msdn.com/shows/Going+Deep/Maoni-Stephens-and-Andrew-Pardoe-CLR-4-Inside-Background-GC/

Re: [Mono-list] Checking memory leak

2009-04-24 Thread Mike Christensen
I guess this really depends on what you mean by a memory leak.. If you mean the object is not reachable and on the queue to be garbage collected, one might "just trust the GC". However, there's also a lot of value on being able to see what objects are on the heap (and large object heap), what gen

Re: [Mono-list] Welcome Summer of Code 2009 Students!

2009-04-24 Thread Mike Christensen
Okay I really hate "me too" reponses but I would be wayyy into a PL/Mono project.. +Int32.MaxValue for this.. 2009/4/23 Rodrigo Cuevas > > PL/Mono awesome project > > > Abe Gillespie escribió: > > Congrats, all! >> >> And PL/Mono - hell yeah! >> >> -Abe >> >> On Thu, Apr 23, 2009 at 1:56 PM

Re: [Mono-list] IHttpHandler works fine under IIS but not Apache

2009-04-03 Thread Mike Christensen
> >type="Willow.Cms.Common.WebServiceHandler, Willow.Cms.Common" /> > > > > > With this configuration you don't need to create the directory > > Cheers > > Peter > > > Mike Christensen wrote: >> This is already done. &g

Re: [Mono-list] IHttpHandler works fine under IIS but not Apache

2009-04-03 Thread Mike Christensen
check your configuration. 2009/4/3 Mike Christensen : Hi guys - I'm thinking this is most likely either an Apache limitation, a configuration problem, or a bug in mod-mono. I'm hoping it's the latter so we can fix it :) Let's say I have an IHttpHandler: public class Handler

[Mono-list] IHttpHandler works fine under IIS but not Apache

2009-04-02 Thread Mike Christensen
Hi guys - I'm thinking this is most likely either an Apache limitation, a configuration problem, or a bug in mod-mono. I'm hoping it's the latter so we can fix it :) Let's say I have an IHttpHandler: public class Handler : IHttpHandler { //Stuff here that will blow your mind } Now I register

Re: [Mono-list] Guide to installing Mono 2.4 on a clean Ubuntu 8.10 Server machine

2009-04-02 Thread Mike Christensen
e the mod and boom they'd be done. Maybe the build guys can comment? Thanks for the feedback! Mike Mike Christensen wrote: Thanks! I'm thinking the official way to do it is probably create a file called mod_mono.load in /etc/apache2/mods-available that has: Include /etc/apache2/mod_m

Re: [Mono-list] Guide to installing Mono 2.4 on a clean Ubuntu 8.10 Server machine

2009-04-02 Thread Mike Christensen
Thanks! I'm thinking the official way to do it is probably create a file called mod_mono.load in /etc/apache2/mods-available that has: Include /etc/apache2/mod_mono.conf MonoServerPath /usr/local/bin/mod-mono-server2 and then create the link in mods-enabled. Isn't there actually some sort of

[Mono-list] Guide to installing Mono 2.4 on a clean Ubuntu 8.10 Server machine

2009-04-01 Thread Mike Christensen
Hi guys - I've written a rough guide to installing Mono 2.4 on a totally clean fresh install of Ubuntu Server 8.10. This guide is geared towards people like me who don't really know a whole lot about Linux or Mono and are most likely coming from a Windows .NET world. For that reason, everythi

Re: [Mono-list] Debian support

2009-04-01 Thread Mike Christensen
ll Mono from sources in Ubuntu/Debian. Maybe contacting to the webmasters of Mono-project... why not? Other sites, maybe ubuntuguide.org? El mar, 31-03-2009 a las 17:26 -0700, Mike Christensen escribió: Yup! All good (I read your first email again).. Have a simple Hello World program running, the

Re: [Mono-list] debugging an asp.net application.

2009-03-31 Thread Mike Christensen
I had checked into this a while ago too and the disappointing answer is "This isn't supported yet." It's a limitation in the Mono debugger. When the mono debugger supports debugging web apps, MonoDevelop will support this as well.. Mike Daniel Soto wrote: > Hello. > > I'm trying the new Mono

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
hing I have to worry about? What is DSO compilation? The only thing server related I installed is: apt-get install apache2 Maybe I need some sort of other packages too? - Original Message - From: "Daniel Soto" To: "Mike Christensen" Cc: "Flap

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
/3/31 Andreas Färber : Hi, Am 31.03.2009 um 21:35 schrieb Mike Christensen: I get: r...@mono24:~# apt-get install libglib-2.0-dev Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package libglib-2.0-dev If I do: apt-cache pkgnames

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
these package). Let me know if you have luck. 2009/3/31 Mike Christensen : Ok here's my "Total friggen moron's guide to installing Mono 2.4 on Ubuntu Server" so far: -) Logon to machine -) At bash prompt, type: sudo bash -) Enter password, you should now be root. -)

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
better way to search it (I not remember the exact name of these package). Let me know if you have luck. 2009/3/31 Mike Christensen : Ok here's my "Total friggen moron's guide to installing Mono 2.4 on Ubuntu Server" so far: -) Logon to machine -) At bash prompt, type:

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
somewhere, or is there another tar file I need to decompress and build? Thanks!! Mike Mike Christensen wrote: Hi - After decompressing the libgdiplus-2.4.tar file and running ./configure I get the error: configure: error: no acceptable C compiler found in $PATH Daniel Soto wrote: I can descri

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
need more help. I can give a hand. Cheers. 2009/3/31 Mike Christensen : Is there a step by step on how to do this on a fresh Ubuntu install? It took me forever to figure out all the packages I needed to install first, and now I just get "Error 2" when I make. Sigh.. FlappySocks wr

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
ache, and xsp2 light webserver for development. Type mono --version to get the version currently installed. Those were the steps that I followed to get mono 2.4 fully functional in a fresh Ubuntu Intrepid install. Let me know if you need more help. I can give a hand. Cheers. 2009/3/31 Mike Christen

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
Is there a step by step on how to do this on a fresh Ubuntu install? It took me forever to figure out all the packages I needed to install first, and now I just get "Error 2" when I make. Sigh.. FlappySocks wrote: > I have just compiled mono 2.4 on Ubuntu, with no problems. Fantastic. Well >

Re: [Mono-list] Re compile on Mono?

2009-03-29 Thread Mike Christensen
That kinda brings up the question of whether the Mono compiler and Microsoft compiler will generate the same IL. I would assume the Mono compiler was modeled very closely after the Microsoft stuff (I think MS releases these compiler specs), the only major difference between the Mono and Micros

Re: [Mono-list] Bundling Mono

2009-03-25 Thread Mike Christensen
I would assume the assembly would be all pre-JIT'ed too? see http://www.mono-project.com/Guide:Running_Mono_Applications For example, if my.exe is compiled with: gmcs -r:my.dll -o my.exe *.cs To create a bundle: mkbundle --deps -o mybundle.exe my.exe my.dll The resulting executable is se

[Mono-list] Step by step instructions to configure mod_mono under Apache

2009-03-17 Thread Mike Christensen
After building mono, mod-mono and mod-mono-server (2.2) from scratch, are there any step by step instructions on getting everything configured under Apache? I'm having a hard time, I'm pretty sure everything is setup but for some reason I just see the ASPX source come up in the browser. I must