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 n...@achren.org 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

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

2013-09-06 Thread Mike Christensen
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) On 6 Sep 2013 18:10, Mike Christensen m...@kitchenpc.com wrote: I'm pretty sure

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 d_muta...@hotmail.com wrote: Good Day

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 d_muta...@hotmail.com wrote: Good Day

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 monodanm...@yahoo.comwrote: 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

Re: [Mono-list] XBuild question removing directories

2011-12-22 Thread Mike Christensen
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, Mike Christensen wrote: I have the following target:   Target

[Mono-list] XBuild question removing directories

2011-12-21 Thread Mike Christensen
I have the following target: Target Name=Clean RemoveDir Directories=$(BuildDir) Condition= Exists('$(BuildDir)') / RemoveDir Directories=Imp/bin Condition= Exists('Imp/bin') / RemoveDir Directories=Imp/obj Condition= Exists('Imp/obj') / RemoveDir Directories=Modeler/bin

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

2011-12-20 Thread Mike Christensen
filing a bug against it. Alan On 20 December 2011 05:34, Abe Gillespie abe.gilles...@gmail.com wrote: http://monodevelop.com/Download/Release_Notes/Release_Notes_for_MonoDevelop_2.8.5, fourth bullet item. On Mon, Dec 19, 2011 at 9:39 PM, Mike Christensen m...@kitchenpc.com wrote

[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-aspnet-list] Support for C#.NET Web Projects rather than only Web Applications?

2011-12-17 Thread Mike Christensen
Hello, I spent a good and enjoyable portion of the morning converting a 6 project solution from VS.NET 2010 to MonoDevelop.  Made the changes necessary to get everything to compile, except... My web sites are what VS and MS refer to as Web Sites, they are not Web Applications with designer

Re: [Mono-list] MonoDevelop 2.8 released

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

Re: [Mono-aspnet-list] Code Problem

2011-09-25 Thread Mike Christensen
I kinda think your code doesn't work because nothing is yet initialized in the page constructor. There's no Request object, and probably the event hashtable hasn't been initialized. Does anything actually go on in Page::Page()? On Sun, Sep 25, 2011 at 5:04 AM, mostafaxx

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 box

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 for

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 r...@wpi.edu 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

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

2011-08-04 Thread Mike Christensen
need to use 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:   Target Name=Build ** Bunch of stuff here **     !-- Crunch Files

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

2011-08-04 Thread Mike Christensen
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 m...@kitchenpc.com wrote: This won't work because I include items that are not yet created until after the target runs.. In other

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 m...@kitchenpc.com wrote: I'll get this filed right away

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

2011-08-04 Thread Mike Christensen
TaskParameter=Include ItemName=ToCrunch / /CreateItem Mike On Wed, Aug 3, 2011 at 7:54 PM, Jonathan Pobst mon...@jpobst.com wrote: You need to use 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

[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. 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: RemoveDir Directories=Imp/bin / 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

[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: Target Name=Build ** Bunch of stuff here ** !-- Crunch Files -- ItemGroup ToCrunch Include=$(BuildDir)/WWW/Scripts/kpc*.js;$(BuildDir)/WWW/Styles/*.css / /ItemGroup Message Importance=High Text=Crunching Script Files... /

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

2011-08-03 Thread Mike Christensen
/bin') Directories=Imp/bin / Thanks, Jonathan On Wed, Aug 3, 2011 at 9:13 PM, Mike Christensen m...@kitchenpc.com wrote: I'm trying to port an MSBuild script to XBuild and running into the following issue: RemoveDir Directories=Imp/bin / This crashes and stops building if Imp/bin does

[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 ___

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

2011-08-01 Thread Mike Christensen
Packages included in the build: main On Mon, Aug 1, 2011 at 5:09 PM, Mike Christensen m...@kitchenpc.com 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 any documentation on any

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

2011-08-01 Thread Mike Christensen
On Mon, Aug 1, 2011 at 5:18 PM, Bojan Rajkovic bo...@canesystems.comwrote: 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.. Configuration

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

2011-08-01 Thread Mike Christensen
On Mon, Aug 1, 2011 at 5:20 PM, Mike Christensen m...@kitchenpc.com wrote: On Mon, Aug 1, 2011 at 5:18 PM, Bojan Rajkovic bo...@canesystems.comwrote: 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

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

2011-07-22 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

[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

[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

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 st...@free.fr 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 Christensen-2 wrote: http

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
that turned free a little while later. Mike Christensen-2 wrote: On Fri, May 20, 2011 at 5:25 PM, jmalcolm lt;malcolm.jus...@gmail.comgt; wrote: Mike Christensen-2 wrote: Are the iOS and Android Mono Frameworks that Xamarin is creating a totally different code-base from MonoTouch

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

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Mike Christensen
On Fri, May 20, 2011 at 4:38 PM, Bojan Rajkovic brajko...@coderinserepeat.com 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 different code-base from

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Mike Christensen
On Fri, May 20, 2011 at 5:25 PM, jmalcolm malcolm.jus...@gmail.com 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 MonoTouch/Droid

[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 xtzgzo...@gmail.com wrote: Hi, I think HTML Agility Pack will do what you want:

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 and

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 does

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 bioubu...@gmail.com: 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

Re: [Mono-list] String comparisons slow

2010-07-21 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 st...@free.fr wrote: There has been performance improvements since Mono 2.0. You may get better results with Mono 2.6. Or if you're

[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

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

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 variable

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] 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

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 and...@dragonflame.org wrote: Hey Cygon and thanks a lot for the reply. I will try it

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
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 m.j.hutchin...@gmail.com wrote: On Sun, Nov 15, 2009 at 7:04 PM, Mike

[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

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 st...@free.fr wrote: The Mono guys put a theme interface in place for WinForms, which could be used to

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

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

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.

[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] 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 ll...@novell.com wrote: The MonoDevelop team is proud to announce the release of

Re: [Mono-aspnet-list] Debugging web apps on Mono

2009-09-14 Thread Mike Christensen
Awesome!! Looks like they're making great progress! The immediate window was my other huge want. Now if we can get integrated script debugging I'll be real happy g Mike On Sun, Sep 13, 2009 at 11:42 PM, Marek Habersack gren...@twistedcode.netwrote: Mike Christensen wrote: Just pinging

[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] 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 belli...@gmail.com 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] 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

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

2009-04-03 Thread Mike Christensen
your configuration. 2009/4/3 Mike Christensen ima...@comcast.net: 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

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

2009-04-03 Thread Mike Christensen
=Willow.Cms.Common.WebServiceHandler, Willow.Cms.Common / /httpHandlers /system.web /configuration With this configuration you don't need to create the directory Cheers Peter Mike Christensen wrote: This is already done. As I've stated in my email, this works for /Test.foo but not /Blah

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

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

2009-04-02 Thread Mike Christensen
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_mono.conf MonoServerPath /usr/local/bin/mod-mono-server2

[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

Re: [Mono-list] Debian support

2009-04-01 Thread Mike Christensen
/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 rest I think I can do since I

[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,

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] Debian support

2009-03-31 Thread Mike Christensen
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 Christensen ima...@comcast.net: Is there a step by step

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
a hand. Cheers. 2009/3/31 Mike Christensen ima...@comcast.net: 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

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
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 describe a summary of how I get Mono

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
it (I not remember the exact name of these package). Let me know if you have luck. 2009/3/31 Mike Christensen ima...@comcast.net: 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

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
). Let me know if you have luck. 2009/3/31 Mike Christensen ima...@comcast.net: 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. -) Type: apt-get install

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
in a fresh Ubuntu Intrepid install. Let me know if you need more help. I can give a hand. Cheers. 2009/3/31 Mike Christensen ima...@comcast.net: Is there a step by step on how to do this on a fresh Ubuntu install? It took me forever to figure out all

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

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

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

[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