Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Marcus
I'm not sure if Mono provides its own version of such a class. It appears that .NET 2.0 will add a System.IO.Ports namespace to provide support for serial ports. I do not see such a namespace in current SVN (subversion) for Mono. If there is not yet a working version, it might be a nice idea

[Mono-list] Oracle y las versiones

2004-11-24 Thread =?iso-8859-1?B?wWxleCBM83BleiBHYXJj7WE=?=
Hola !!     Buenas noticias. Hemos probado lo del fill ,no con vuestra versión de desarrollo, pues no sabemos de donde bajarla, y la que hemos bajado del CVS tampoco funciona, sino con diferentes versiones del Mono. Hemos detectado que con la última versión estable, la 1.0.4,

Re: [Mono-list] GDI+ problems on 1.0.4

2004-11-24 Thread Ravindra Kumar
Thanks Peter, for clarifying this for me. Here are some more points I'd like to add to answer Dilton's queries. Peter Dennis Bartok [EMAIL PROTECTED] 11/24/04 4:48 AM Dilton McGowan II [EMAIL PROTECTED] 11/24/04 2:59 AM What are SVN and HEAD? Are these CVS terms? I'm not trying to fix this

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Marcus wrote: I'm not sure if Mono provides its own version of such a class. It appears that .NET 2.0 will add a System.IO.Ports namespace to provide support for serial ports. I do not see such a namespace in current SVN (subversion) for Mono. If there is not yet a working version, it might be

[Mono-list] Npgsql

2004-11-24 Thread Kevin B.
Hi, I'm trying to use Npgsql but when I compile the test program I get: The namespace `Npgsql' can not be found (missing assembly reference?)(CS0246) I could not find the Npgsql.dll on my system so I downloaded the latest beta from the GBorg site and did this: [EMAIL PROTECTED] mono]# gacutil

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Miguel de Icaza
Hello, Anyone knows if there is a way to open the device (/dev/rfcomm0) directly using some file-IO-functions without using the NET-class-library to do ut? Just open the file like you would any other file. If you need better control, try using the Mono.Posix assembly.

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Miguel de Icaza wrote: Hello, Anyone knows if there is a way to open the device (/dev/rfcomm0) directly using some file-IO-functions without using the NET-class-library to do ut? Just open the file like you would any other file. If you need better control, try using the Mono.Posix assembly. If

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Miguel de Icaza wrote: If I just open /dev/rfcomm0 as a normal file and sends an AT , I'm able to read out OK from the file? Yes. I have created a simple application to try this, but it does not seem to work. using System; using System.IO; namespace serialchattest { class serialchattest {

Re: [Mono-list] GDI+ problems on 1.0.4

2004-11-24 Thread Dilton McGowan II
Hi, Thank you all for looking at this. We cannot build production products by mixing and matching various source builds. I'm trying to determine if there is a bug in 1.0.4 or if I do not have a correct system configuration. Here is what I did: 1) Started with a new SuSe system 2) Went to the

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread George Birbilis
are you trying this on Windows? I assume the other guys meant to try this on Linux/UNIX can try installing POSIX extensions for Windows I think (is called UNIX SERVICES, free from MS/MSDN) else just try opening the file com1: or maybe com1 also may need to tell Writeln method if it should spit out

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
George Birbilis wrote: are you trying this on Windows? I assume the other guys meant to try this on Linux/UNIX can try installing POSIX extensions for Windows I think (is called UNIX SERVICES, free from MS/MSDN) else just try opening the file com1: or maybe com1 also may need to tell Writeln

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Jon-Eirik Pettersen wrote: George Birbilis wrote: are you trying this on Windows? I assume the other guys meant to try this on Linux/UNIX can try installing POSIX extensions for Windows I think (is called UNIX SERVICES, free from MS/MSDN) else just try opening the file com1: or maybe com1 also may

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Gonzalo Paniagua Javier
On Wed, 2004-11-24 at 18:46 +0100, Jon-Eirik Pettersen wrote: I have created a simple application to try this, but it does not seem to work. using System; using System.IO; namespace serialchattest { class serialchattest { static string device = /dev/rfcomm0; static void

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Gonzalo Paniagua Javier wrote: On Wed, 2004-11-24 at 18:46 +0100, Jon-Eirik Pettersen wrote: I have created a simple application to try this, but it does not seem to work. using System; using System.IO; namespace serialchattest { class serialchattest { static string device = /dev/rfcomm0;

[Mono-list] Paths to temporary files

2004-11-24 Thread Charles Martin
Well guys, I'm still struggling with that permission issue and I wish to permanently resolve this error : System.UnauthorizedAccessException: Access to the path "/root/tmp/nobody-temp-aspnet/e828334c" is denied. As I previously reported, setting permissions to 777 on /root temporarly fixes

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Gonzalo Paniagua Javier
On Wed, 2004-11-24 at 22:22 +0100, Jon-Eirik Pettersen wrote: I don't think I have enough information to do it. It says the stream is seek-able because it thinks it is a normal file it is opening, but seeking do not seems to work on devices. The bug is exactly that. The runtime should

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
Gonzalo Paniagua Javier wrote: On Wed, 2004-11-24 at 22:22 +0100, Jon-Eirik Pettersen wrote: I don't think I have enough information to do it. It says the stream is seek-able because it thinks it is a normal file it is opening, but seeking do not seems to work on devices. The bug is exactly

[Mono-list] Newby

2004-11-24 Thread Paul Thompson
I've used C# and .NET in the Windows environment but would like to try it with my SuSE Linux 9.2 professional that comes with the VM and compiler. C# may be the best of the languages, Java with practical additions, e.g. structures. Is there an IDE available for development? a debugger?

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Miguel de Icaza
Hello, I have made a buggy application that is able to send data (if I send ATZ I can see in the other end that it works), but it is not able to receive data: The diagnostic messages you are getting means that your code is buggy, it has nothing to do with reading/writing to the

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread George Birbilis
No, I'm not trying this on Windows. then why does the error trace say: Unhandled Exception: System.IO.IOException: Win32 IO returned ERROR_SEEK. Path: /dev/rfcomm0 should it say Win32 IO or is it a bug too? - George Birbilis ([EMAIL PROTECTED]) http://www.kagi.com/birbilis --

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread George Birbilis
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object when catching the exception try also printing out a stack trace for it (see the respective method available at the base Exception class to get the trace, then print it out) - George

[Mono-list] mod_mono

2004-11-24 Thread Darren Martz
Gonzalo, I have been looking over the mod_mono source and have a few thoughts. Before you read on, please don't take offence to anything I write that may accidentally offend... I am just trying to help. It seems the way to create a separate mod-mono-server process per MonoApplication is to

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread George Birbilis
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object when catching the exception try also printing out a stack trace for it (see the respective method available at the base Exception class to get the trace, then print it out) --

Re: [Mono-list] C#/Mono Serial port communication

2004-11-24 Thread Jon-Eirik Pettersen
George Birbilis wrote: Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object when catching the exception try also printing out a stack trace for it (see the respective method available at the base Exception class to get the trace, then print

Re: [Mono-list] Newby

2004-11-24 Thread Ryan
Paul Thompson wrote: I've used C# and .NET in the Windows environment but would like to try it with my SuSE Linux 9.2 professional that comes with the VM and compiler. C# may be the best of the languages, Java with practical additions, e.g. structures. Is there an IDE available for

Re: [Mono-list] Npgsql

2004-11-24 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin B. wrote: | Hi, | | I'm trying to use Npgsql but when I compile the test program I get: | The namespace `Npgsql' can not be found (missing assembly reference?)(CS0246) | | I could not find the Npgsql.dll on my system so I downloaded the latest |

RE: [Mono-list] Newby

2004-11-24 Thread Carl Olsen
Hi Paul, I'm using SuSE Linux 9.1 Professional and I've installed Mono from the RMPs at http://www.go-mono.com/archive/1.0.4/suse-91-i586/. One of the programs it installs is monodevelop which shows up in my program menu under development tools. I haven't used it yet, but it's similar to Visual

Re: [Mono-list] Paths to temporary files

2004-11-24 Thread Gonzalo Paniagua Javier
On Wed, 2004-11-24 at 16:56 -0500, Charles Martin wrote: Well guys, I'm still struggling with that permission issue and I wish to permanently resolve this error : System.UnauthorizedAccessException: Access to the path /root/tmp/nobody-temp-aspnet/e828334c is denied. As I previously

Re: [Mono-list] mod_mono

2004-11-24 Thread Gonzalo Paniagua Javier
On Wed, 2004-11-24 at 15:39 -0800, Darren Martz wrote: Gonzalo, I have been looking over the mod_mono source and have a few thoughts. Before you read on, please don't take offence to anything I write that may accidentally offend... I am just trying to help. Heh. Let's see ;-). It seems

[Mono-list] Re: mod_mono

2004-11-24 Thread Daniel Lopez
My interest in this? Coming from the windows C/C++ world I'd like to see an alternative on Windows for asp.net and am considering writing the port myself if nobody else is up to the challenge. That would help many businesses wanting to move away from IIS but towards Asp.Net that are not

[Mono-list] C# color code syntax in Monologue

2004-11-24 Thread Diego Barros
Hi all, I was wondering what tool (code) was used to display C# code in the Monologue blogs in colored HTML format? Cheers, Diego ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] C# color code syntax in Monologue

2004-11-24 Thread Atsushi Eno
Hi, It is prettyprint.js referenced from those HTML files. We just use xmp class=code-csharp.../xmp. Cheers, Atsushi Eno Diego Barros wrote: Hi all, I was wondering what tool (code) was used to display C# code in the Monologue blogs in colored HTML format? Cheers, Diego

RE: [Mono-list] mod_mono

2004-11-24 Thread Darren Martz
There's other alternative that works for other apache models than prefork: running mod-mono-server by yourself. This way you only have to tell the module not to fork (MonoRunXSP false) and you can set its own user, .wapi dir, etc. You'll want to start/stop this 'daemon' when apache