Re: [Mono-list] 1.0 Release and Developing in VS.net (VB)

2004-05-10 Thread Jonathan Pryor
Just to elaborate on this, it depends on what your VB app uses. See also the "vb.net applications on linux" concurrent thread. If you avoid the VB runtime classes (anything under Microsoft.VisualBasic), you should be safe. Using ``Option Strict On'' will help with this. Some parts of the VB run

Re: [Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Adam Jacob
Doht. Okay, so now that I'm paying attention, would that not mean that Apache is saying this request isn't destined for this handler, so mod_mono doesn't try and do it's thing on it? Adam On Mon, 2004-05-10 at 15:43, Adam Jacob wrote: > It appears that mod_mono is not registering the handler...

Re: [Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Chris Turchin
Hi, I was having very similar problems and it was in fact permissions related. Make sure that the apache/web user has permissions in whatever directory your web application stuff is in. I did not notice this earlier because i was always starting the mod-mono-server from hand up to now (now being

Re: [Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Adam Jacob
It appears that mod_mono is not registering the handler... In mod_mono.c, if I change it to this: static int mono_handler (request_rec *r) { DEBUG_PRINT (1, "registering my handler, %s", r->handler); if (strcmp (r->handler, "mono")) { DEBUG_PRINT (1, "registering m

Re: [Mono-list] MCS hello world?

2004-05-10 Thread Erik Dasque
Jacques, we have some issues on the installer you downloaded and a new version up there that fixes the problem. This is how you can fix it on yours (quoting Gonzalo): " I only needed to set the PATH like: C:\> set PATH=c:\cygwin\home\myuser\go-mono\install\bin;%PATH% And then my mcs.bat file is

Re: [Mono-list] 1.0 Release and Developing in VS.net (VB)

2004-05-10 Thread Erik Dasque
1.0 includes a preview of a VB.NET compiler and runtime. In Mono 1.2 (Q4/2004) we'll support it fully. Erik On May 10, 2004, at 12:37 PM, Bryan Andrews wrote: Will the 1.0 release support DLL's built with VB in VS.net? If so will there be any support or documentation on how to do this with the

Re: [Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Adam Jacob
On Mon, 2004-05-10 at 13:18, Gonzalo Paniagua Javier wrote: > > Does anybody have this working with the apache2 prefork mpm on SuSE 9? > > Am I just being a moron? (Likely!) > > I just tried the same lines that you have (but i run apache2 as a > non-privileged user and on port 8080) and it wor

[Mono-list] Building your own Mono RPMS

2004-05-10 Thread Duncan Mak
Hello all, The RPM spec files as well as Build Buddy configuration files for packaging building have been updated on http://www.go-mono.com/packagers If you would like to make your own RPMS, please use the files listed there. thank you, Duncan. _

Re: [Mono-list] Mono Beta 1.0

2004-05-10 Thread Duncan Mak
On Sun, 2004-05-09 at 20:40, Mark Gimelfarb wrote: > Count me in as well. I'm not any more exprienced, but I have a need just > like Tracy does and I would like to give it a shot. Spec files are available here: http://www.go-mono.com/packagers I use the source tarballs from each release,

Re: [Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Gonzalo Paniagua Javier
El lun, 10-05-2004 a las 22:00, Adam Jacob escribió: > I'm having trouble getting mod_mono 0.9 running with the stock SuSE 9 > apache2. Using all the rpm's from mono beta 1, and mod_mono compiled > against the apache2-prefork in SuSE 9. Including a config that looks > like the following from /etc/

[Mono-list] mod_mono on SuSE 9 apache2

2004-05-10 Thread Adam Jacob
I'm having trouble getting mod_mono 0.9 running with the stock SuSE 9 apache2. Using all the rpm's from mono beta 1, and mod_mono compiled against the apache2-prefork in SuSE 9. Including a config that looks like the following from /etc/apache2/conf.d: LoadModule mono_module /usr/lib/apache2/libm

Re: [Mono-list] MCS hello world?

2004-05-10 Thread Paul
Hi, > Unhandled exception: System.NullReferenceException: Object reference > not set to an instance of an object. > I know this might be a very elementary question, but please do help a > very newbie. Working fine under Mono for Linux -- "There are four stages to any war First they ignore you

[Mono-list] 1.0 Release and Developing in VS.net (VB)

2004-05-10 Thread Bryan Andrews
Will the 1.0 release support DLL's built with VB in VS.net? If so will there be any support or documentation on how to do this with the release? I assume this would mean no client side script blocks in VB.net... Thanks for clarification. ___ Mono-list m

RE: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Gonzalo Paniagua Javier
El lun, 10-05-2004 a las 11:54, Nick D escribió: > >| -Original Message- > >| From: [EMAIL PROTECTED] [mailto:mono-list- > >| [EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier > >| Sent: Monday, May 10, 2004 6:35 AM > >| To: Monkey Business > >| Subject: [Mono-list] Windows installer -

[Mono-list] Mono Beta1 and MonoDevelop on FC2 test 3 HOWTO

2004-05-10 Thread K Ash
Yesterday I successfully installed Mono Beta 1 and MonoDevelop 0.3 on FC2. Since nobody else decribed this process, I'll share it with you. First, I wanted to minimize packages I had to build. So I tried using most of FC1 packages. As a sidenote: I love Debian, and although FC2 test 3 seems to dete

RE: [Mono-list] vb.net applications on linux

2004-05-10 Thread Jörg Rosenkranz
Hello Ahmed, > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] > Sent: Monday, May 10, 2004 2:17 PM > To: [EMAIL PROTECTED] > Subject: [Mono-list] vb.net applications on linux > > Anyone ever tried to convert an application > from

[Mono-list] mcs 0.91 problem : Cannot find assembly `System.Data'

2004-05-10 Thread HannibAl Bundie
Hi, Since I've installed the new mono Beta 1, I have a problem when I compile my program. Indeed, mcs wasn't able to find any assembly. For instance, when I use the compile line : mcs -o program.exe *.cs -r:System.Data I have the following error : Cannot find assembly `System.Data'. And it's t

Re: [Mono-list] vb.net applications on linux

2004-05-10 Thread Erik Bågfors
Without knowing anything about vb or vb.net, I see four choices. 1) Compile the application in mono's vb compiler. Might not work 2) Compile the application in windows, move the binary to mono, run it there. Might work, might not if it's using stuff that is not implemented in mono. 3) Rewrite the

RE: [Mono-list] vb.net applications on linux

2004-05-10 Thread jonathan.cooper
As far as I'm aware the VB.Net provision under mono is far from being production stable. I would therefore suggest you migrate the application to an alternate server if you wish to continue with the linux migration. With regards the code conversion, there are many tools available on the web to co

[Mono-list] vb.net applications on linux

2004-05-10 Thread aakef
I'm planning to migrating a server from windows to linux. However one of the applications is in vb.net. Its a fairly big applications so i don't think its going to be possible to rewrite it. I know that currently in mono there's no production level implementation of vb.net available. Are there any

[Mono-list] MCS hello world?

2004-05-10 Thread Jacques Du Preez
Title: Message Hi,   I'm completely new to Mono, .NET and C#. Although I have a thorough knowledge of Delphi, Java, and VB6. I'm having a bit of a problem compiling my helloworld application from Win XP. Whenever I try to compile something I get the following error message:   WARNING: Could

RE: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Richard Torkar
On Mon, 2004-05-10 at 18:54 +0900, Nick D wrote: > >| -Original Message- > >| From: [EMAIL PROTECTED] [mailto:mono-list- > >| [EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier > >| Sent: Monday, May 10, 2004 6:35 AM > >| To: Monkey Business > >| Subject: [Mono-list] Windows installer -

RE: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Nick D
>| -Original Message- >| From: [EMAIL PROTECTED] [mailto:mono-list- >| [EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier >| Sent: Monday, May 10, 2004 6:35 AM >| To: Monkey Business >| Subject: [Mono-list] Windows installer - Take 3, a.k.a. "this should work >| for everyone" >| >| Hi

Re: AW: [Mono-list] Windows installer - Take 3, a.k.a. "this shouldwork for everyone"

2004-05-10 Thread Chris Turchin
FYI: In my case, I had in fact just copied the DLL somewhere else to reference it in my test application. --chris On Mon, 10 May 2004, Jochen Wezel wrote: > Chris' question is correct and maybe a question for best practises for getting Mono > apps running on MS.NET: > > Is it better to let the

AW: [Mono-list] Windows installer - Take 3, a.k.a. "this shouldwork for everyone"

2004-05-10 Thread Jochen Wezel
Chris' question is correct and maybe a question for best practises for getting Mono apps running on MS.NET: Is it better to let the windows installer install all DLLs containing Mono namespaces (e.g. Mono.Data.SqliteClient) to the GAC of MS.NET, too? Or is it better to copy those additional re

[Mono-list] [Patch] Mono.Data.SqliteClient named input parameters

2004-05-10 Thread Chris Turchin
Hi, I have written a patch for Mono.Data.SqliteClient to allow working with named input parameters that I would like to have committed. Basically you can do something like: dbcmd.CommandText = "SELECT * FROM MONO_TEST where NID = @nid AND NDESC LIKE @ndesc and (EMAIL LIKE '[EMAIL PROTECTED]' or

[Mono-list] Installing Mono (with GAC) in a different directory than the one compiled ?

2004-05-10 Thread George Kodinov
Hi, What is the recommended practice on installing the Mono binaries in a directory different from the one that they are configured to ? For example I do : ./configure --prefix=/usr/local/mono . ; make ; make install and then I would need the /usr/local/mono moved to (say) /opt/mono ? Before

Re: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Gert Driesen
- Original Message - From: "Gonzalo Paniagua Javier" <[EMAIL PROTECTED]> To: "Monkey Business" <[EMAIL PROTECTED]> Sent: Sunday, May 09, 2004 11:35 PM Subject: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone" > Remember that the .bat wrappers are created in

Re: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Chris Turchin
Hello, i downloaded this setup (I have never tried mono in windoze before) to my 2003 vmware and installed it. seems install worked and "mono Helloworld.exe" seems to work too. cool. but when i try to use a mono assembly (in this case Mono.Data.SqliteClient) in MS.NET I get: An unhandled excepti