Re: [Mono-list] Please help for mono fortran

2006-11-13 Thread Atsushi Eno
Hi, There is no fortran compiler that works under Mono (looks like there is one for VS.NET though: LF Fortran). The closest path to support fortran would be some kind of GCC support for CIL backend, which practically does not exist yet. Or ask Lahey/Fujitsu guys to support LF Fortran for Mono ;-

[Mono-list] Please help for mono fortran

2006-11-13 Thread mandel
Hello, I'm new in mono, i have a Fortran program and i would like use it in mono but i don't find help about compile Fortran with mono. Thank you ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] System.Xml XmlTextReader 'resolver' ...

2006-11-13 Thread Atsushi Eno
Hi, Michael Meeks wrote: > Interesting; I'd be interesting to know what source you get that from. > Based on the fact that this code works on MS' .Net 2.0 but not under > Mono, it appears likely that we behave differently, and thus we are in > error. Furthermore, (now I look) MSDN appears to

Re: [Mono-list] System.Xml XmlTextReader 'resolver' ...

2006-11-13 Thread Atsushi Eno
Hi, Michael Meeks wrote: > It seems one constructor for XmlTextReader really requires a > XmlResolver parameter [ perhaps instead of the dummy boolean ? ], such > that we can resolve URIs correctly in the GetStreamFromUrl call inside > the impl. Sadly the patch is wrong - the XmlResolver in

Re: [Mono-list] UnixStream/Pipe Best Practices

2006-11-13 Thread Ben Timby
Easiest way is likely to configure syslog-ng with a destination of type: unix-stream for your firewalls events. syslog-ng.conf: -- source firewall { udp(ip(0.0.0.0) port(5000)); }; destination parser { unix-stream("/var/firewall-parser"); } log { source(firewall);

[Mono-list] Web app migrate from win32 to linux

2006-11-13 Thread Travis Staloch
Guys,I've recently moved a .NET 1.1 web application over from a working windows/IIS machine to a linux/apache2/mod_mono machine. I keep getting this message whenever I try to view any of the pages:System.MissingMethodException: Method not found: 'Mono.Data.Tds.Protocol.TdsConnectionParameters.Rese

[Mono-list] UnixStream/Pipe Best Practices

2006-11-13 Thread Michael Schurter
Hi all, My goal is to generate useful stats and pretty graphs from my SonicWall firewall without buying their ViewPoint software. Right now I have syslog-ng accepting log messages from the firewall and dumping them to a file. I have a C# program that can read this log file and dump relevant data

[Mono-list] Compiling Mono 1.2 on Solaris

2006-11-13 Thread k2k2e6
I am getting the following errors on Solaris when compiling Mono 1.2 tarball: UltraSparc III, Solaris 10: Making all in metadata /bin/bash ../../libtool --tag=CC --mode=link gcc -O -g -O2 -fno-strict-aliasing -Wdeclaration-after-statement -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarati

Re: [Mono-list] HttpWebResponse : Encoding info (Mono better than .Net???)

2006-11-13 Thread Robert Jordan
[EMAIL PROTECTED] wrote: > On Mono : iso-8859-1 (as String) > > On .Net : String.Empty ... and of course there is no Encoding for string.Empty > Which version? MS.NET 1.1 or 2.0? Please file a bug with the output of both versions MS.NET versions and with the output of objHttpReponse.Headers["Co

Re: [Mono-list] HttpWebResponse : Encoding info (Mono better than .Net???)

2006-11-13 Thread xiii29
On Mono : iso-8859-1 (as String) On .Net : String.Empty ... and of course there is no Encoding for string.Empty Selon Kornél Pál <[EMAIL PROTECTED]>: > >Why in Mono/Linux the field is ok and not on .Net/Windows ? > > Please let us know the exact objHttpReponse.CharacterSet value(s) that you > ex

Re: [Mono-list] HttpWebResponse : Encoding info (Mono better than .Net ???)

2006-11-13 Thread Robert Jordan
[EMAIL PROTECTED] wrote: > Hi, > > My apps make a request on internet with an HttpWebRequest and an > HttpWebResponse. For some weeks I got trouble with specials char (é, à, ù > [...]). > > I find a solution : That's not really a valid solution. CharacterSet could be everything, including an inv

Re: [Mono-list] HttpWebResponse : Encoding info (Mono better than .Net???)

2006-11-13 Thread Kornél Pál
>Why in Mono/Linux the field is ok and not on .Net/Windows ? Please let us know the exact objHttpReponse.CharacterSet value(s) that you experienced causing ArgumentException because that helps to understand the problem. Kornél - Original Message - From: <[EMAIL PROTECTED]> To: "Mono L

[Mono-list] HttpWebResponse : Encoding info (Mono better than .Net ???)

2006-11-13 Thread xiii29
Hi, My apps make a request on internet with an HttpWebRequest and an HttpWebResponse. For some weeks I got trouble with specials char (é, à, ù [...]). I find a solution : // -1- get response HttpWebResponse objHttpReponse = objHttpRequest.GetResponse(); // -2- Get the stream objStream = objHttpRe

Re: [Mono-list] Mono Basic

2006-11-13 Thread Rolf Bjarne Kvinge
Hello, Yes, there is work in progress to make the mono basic compiler self-hosting on Linux, though there is not a date yet (there is an undetermined number of bugs in mono itself that has to be fixed). Rolf On Fri, 10 Nov 2006 22:03:37 +0100, Paul <[EMAIL PROTECTED]> wrote: > Hi, > > Any