Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Raja R Harinath
Hi, Kornél Pál [EMAIL PROTECTED] writes: Its an artifact of using libtool for creating the dlls. libtool thinks we want to start all our dlls with 'cyg' and can't be convinced otherwise. Zoltan And how are the dlls built for the installer that they don't start with 'cyg'? I

[Mono-devel-list] [PATCH] System.Collections.ObjectModel implementations

2005-06-20 Thread David Waite
Included in this patch are implementations of CollectionT and ReadOnlyCollectionT. KeyedCollection I left alone. 2005-06-19 David Waite [EMAIL PROTECTED] * Collection.cs ReadonlyCollection.cs: Implement all methods objectmodel-impl.diff Description: Binary data

[Mono-devel-list] [Patch] System.Collections.Generic List improvements

2005-06-20 Thread David Waite
Attached are 'substantial' changes in the List implementation, including a 9-fold increase in tests (written while verifying behavior in the 2005 beta 2 implementation of ListT) 2005-06-20 David Waite [EMAIL PROTECTED] * List.cs : substantial changes and optimizations (AddCollection,

Re: [Mono-devel-list] Re: valid-sa-100 testcase

2005-06-20 Thread Eyal Alaluf
Hi, Atsushi. ... There are some cases that (at least) XmlTextReader.Read() and XmlDocument.Load() differ in rejecting input xml or not e.g. XmlDocument.Load() rejects undeclared entities while XmlTextReader does not. I ment this difference that you have mentioned. Eyal. On Mon, 20 Jun

Re: [Mono-devel-list] Bootstrap net_2_0 fails on Windows

2005-06-20 Thread Atsushi Eno
Hi, I got the same result. It does not reproduce when I built mcs default profile with MCS=mcs, so something is wrong with attribute resolution where the assembly of the attribute is compiled by csc. (BTW that would be why Paco had no problem on building win32 package since he uses mcs to build

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Kornél Pál
I don't know much about the Windows world, but IIRC, you have to say you're targetting 'mingw' rather than 'cygwin'. You'll then get libmono-1.dll and libMonoPosixHelper.dll -- I don't think you can escape the lib prefix either, but it's at least bearable. I have never tried to compile Mono

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Kornél Pál
From: Raja R Harinath I don't know much about the Windows world, but IIRC, you have to say you're targetting 'mingw' rather than 'cygwin'. You'll then get libmono-1.dll and libMonoPosixHelper.dll -- I don't think you can escape the lib prefix either, but it's at least bearable. I have never

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Raja R Harinath
Hi, Kornél Pál [EMAIL PROTECTED] writes: From: Raja R Harinath I don't know much about the Windows world, but IIRC, you have to say you're targetting 'mingw' rather than 'cygwin'. You'll then get libmono-1.dll and libMonoPosixHelper.dll -- I don't think you can escape the lib prefix either, but

Re: [Mono-devel-list] System.Data.DataSet.ReadXml reimplementation

2005-06-20 Thread Konstantin Triger
Hi Eno, The main problem was that sometimes the schema was not a root element, but its child. This is a common case when DataSet is serialized in .Net. The existing ReadXml() failed in this case and did read the schema as a content. Possibly, what needs to be done is when a schema is found

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Kornél Pál
That's because of Mono's misuse of autoconf. IIRC, The GNU build system already has a way to express that we don't want to link against cywin.dll: that's to cross-compile to mingw. I can't fix it since I don't have the knowledge to fix it, nor the patience to gain the knowledge on Windows.

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Raja R Harinath
Hi, Kornél Pál [EMAIL PROTECTED] writes: That's because of Mono's misuse of autoconf. IIRC, The GNU build system already has a way to express that we don't want to link against cywin.dll: that's to cross-compile to mingw. I can't fix it since I don't have the knowledge to fix it, nor the

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Raja R Harinath
Hi, Raja R Harinath [EMAIL PROTECTED] writes: [snip] Anyway, I'm suggesting that you try running ./configure --host=i586-pc-mingw That should be 'i586-pc-mingw32'. - Hari ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Raja R Harinath
Hi, Kornél Pál [EMAIL PROTECTED] writes: Anyway, I'm suggesting that you try running ./configure --host=i586-pc-mingw That should be 'i586-pc-mingw32'. OK, it worked.:) But I got the result that monodiet.exe, pedump.exe, mono.exe and monograph.exe now (with mingw) contains references

Re: [Mono-devel-list] cygmono-1.dll and cygMonoPosixHelper.dll

2005-06-20 Thread Kornél Pál
Hi, From: Raja R Harinath Furthermore I don't know why is better to use --host=i586-pc-mingw if we build using cygwin and it already results no cygwin dependency. Does it have any advantage over building for cygwin? * for now, the only reason to use mingw32 would be to avoid the 'cyg'

RE: [Mono-devel-list] Contributing Mainsoft System.Web test suite

2005-06-20 Thread RafaelMizrahi
Hi Gonzalo, Here it is ! System Web Harness integrated with NUnit and tested it on mono. How can I send you the zip files? Since it is approximately 11MB, ximian mail server rejects the email. Client-side test framework SystemWebTestSuite.zip - Web Harness integrated with NUnit Server-side web

Re: [Mono-devel-list] Tests for System.DirectoryServices

2005-06-20 Thread Ben Maurer
On Sun, 2005-06-19 at 18:26 +0300, Boris Kirzner wrote: The second point is that DirectoryServices tests require environment variable of (some, not necessary the default) ldap server to run on. So, the tests logic can possibly be: if no environment variable present, test prints warning

Re: [Mono-devel-list] [PATCH] System.Collections.ObjectModel implementations

2005-06-20 Thread Ben Maurer
On Mon, 2005-06-20 at 00:44 -0600, David Waite wrote: Included in this patch are implementations of CollectionT and ReadOnlyCollectionT. KeyedCollection I left alone. 2005-06-19 David Waite [EMAIL PROTECTED] * Collection.cs ReadonlyCollection.cs: Implement all methods

Re: [Mono-devel-list] [Patch] System.Collections.Generic List improvements

2005-06-20 Thread Ben Maurer
On Mon, 2005-06-20 at 01:20 -0600, David Waite wrote: Attached are 'substantial' changes in the List implementation, including a 9-fold increase in tests (written while verifying behavior in the 2005 beta 2 implementation of ListT) 2005-06-20 David Waite [EMAIL PROTECTED] * List.cs

Re: [Mono-devel-list] [PATCH] System.Collections.ObjectModel implementations

2005-06-20 Thread David Waite
On 6/20/05, Ben Maurer [EMAIL PROTECTED] wrote: On Mon, 2005-06-20 at 00:44 -0600, David Waite wrote: Included in this patch are implementations of CollectionT and ReadOnlyCollectionT. KeyedCollection I left alone. 2005-06-19 David Waite [EMAIL PROTECTED] * Collection.cs

Re: [Mono-devel-list] BIg Problem with webservices (client)

2005-06-20 Thread Hubert FONGARNAND
Le Vendredi 17 Juin 2005 11:44, vous avez écrit : Can you please file a bug report in bugzilla.ximian.com for this? and please attach the code of the web service that fails (if possible) or the wsdl document? Bug filled nr : 75323 Thanks, Lluis. El dv 17 de 06 del 2005 a les 11:27 +0200,

Re: [Mono-devel-list] Is there a way to debug ASP.NET Application...

2005-06-20 Thread Chris Toshok
Unfortunately mdb can't be used to debug asp.net apps. There is no support for appdomains in the debugger as yet. Chris On Fri, 2005-06-17 at 11:31 +0200, Hubert FONGARNAND wrote: I don't want to use VS.NET. I'm under Linux Is use Console.WriteLine today, but it's very uncomfortable! I've

[Mono-devel-list] BeginInvoke - Exception issues

2005-06-20 Thread Thomas Harning Jr.
I'm using the asynchronous version of Dns.Resolve - Dns.BeginResolve and when an exception is thrown for a missing host, I get 2 exceptions. 1 is inside the async call, and another is reported with EndResolve in the callback. Shouldn't the async call one be 'hidden'? It's being printed to the

Re: [Mono-devel-list] BeginInvoke - Exception issues

2005-06-20 Thread Gonzalo Paniagua Javier
On Mon, 2005-06-20 at 20:38 -0400, Thomas Harning Jr. wrote: I'm using the asynchronous version of Dns.Resolve - Dns.BeginResolve and when an exception is thrown for a missing host, I get 2 exceptions. 1 is inside the async call, and another is reported with EndResolve in the callback.

Re: [Mono-devel-list] BeginInvoke - Exception issues

2005-06-20 Thread Thomas Harning Jr.
Gonzalo Paniagua Javier wrote: File a bug report in bugzilla with a test case and I'll fix it. -Gonzalo K... Posted. Wasn't sure if it was standard behavior or not. [though it looked like it wasn't]. -- Thomas Harning Jr. signature.asc Description: OpenPGP digital signature

[Mono-devel-list] The class could not be loaded / NullReferenceException

2005-06-20 Thread Samuel Kaufman
This chunk of output just completely mystifies me. I have no idea why I'm getting it. I'm using Mono 1.1.8. [EMAIL PROTECTED]:~/Navajo/bin$ mono Navajo.exe ** (Navajo.exe:8434): WARNING **: The class Navajo.OutputType could not be loaded, used in /home/emrys/Navajo/bin/Navajo.exe (token

[Mono-devel-list] Important 1.1.8.1 bug fix release.

2005-06-20 Thread Miguel de Icaza
Hello, Mono 1.1.8.1 is a minor bug fix release to Mono 1.1.8, for details on 1.1.8 see its release notes. Important Bug Fixes in 1.1.8.1 Fixed a bug in our Socket.Select implementation that was introduced in 1.1.8 which failed to work on read descriptors (Gonzalo). Fixed a long-standing

[Mono-list] xsp2 bug in mono 1.1.8

2005-06-20 Thread Alessandro Zifiglio
hi, I have installed the recent 1.1.8 version of mono via the installer found here -- http://www.go-mono.com/archive/1.1.8/installer/mono-1.1.8-installer.binI run debian sarge and the installation all went fine and it workedlikea charm. However trying to start xsp2 after successful

[Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
(*falling asleep as I type this*) I have a HttpHandler that works on .NET but not on Mono. I need some help to sort it out. It is a HttpHandler to allow me to use a url like : http://mysite/images/Beach12/DCS001.JPG?w=200 to give me the image at the specified url, but proportionately

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Martin Hinks
What part of the app is failing? Is the handler for .jpg types being called but the querystring is blank? Have you traced through the application? If you can find exactly what is failing we can file BugZilla reports. If the handler is working post some source and I'll take a look later. To

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Gonzalo Paniagua Javier
On Mon, 2005-06-20 at 02:53 -0500, Marc DM wrote: [...] http://mysite/images/Beach12/DCS001.JPG?w=200 to give me the image at the specified url, but proportionately resized to 200px wide. -APACHE CONFIG-

RE: [Mono-list] Npgsql.dll

2005-06-20 Thread Chris Aitken
Hi Francisco, I did create an alias: declare input ALIAS FOR $1; are you suggesting that I use param1 instead of input? I suppose that would make it easier to do the ADO.NET code, rather than trying to remember unusual names for parameters. Is that your point? I was going

Re: [Mono-list] Installing mono 1.1.8 on Ubuntu

2005-06-20 Thread Martin Hinks
Have you tried the suggestion to run apt-get -f install? Basically, look at the error message, it is telling you that you do not have libc6 version 2.3.2.ds1-21 or above - install that and try again. Martin On 6/18/05, Paulo Aboim Pinto [EMAIL PROTECTED] wrote: Hello I'm having problems

RE: [Mono-list] Npgsql.dll

2005-06-20 Thread Carl Olsen
Oops, forgot to include the address for my home page: http://www.carl-olsen.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Olsen Sent: Monday, June 20, 2005 5:43 AM To: [EMAIL PROTECTED]; mono-list@lists.ximian.com Subject: RE: [Mono-list]

RE: [Mono-list] Npgsql.dll

2005-06-20 Thread Chris Aitken
I have everything working now. If you look on my home page, you'll see a hit counter that uses 8 stored procedures, create, update, delete, get_details, get_count, get_id, get_table, get_totals. It tracks each IP address separately, which you can't see by looking at the home page. It

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
*told you I was falling asleep* Everything is referenced with the correct case. The UPPERCASE filenames (in my previous email) was only that way for emphasis. In the config it says .jpg and all image files are renamed to .jpg (lowercase extension) before being deployed. I'm about to start

[Mono-list] Installing Apache 1.3 and mod_mono question.

2005-06-20 Thread Nick Berardi
I am setting up Mono on a clients server is there any special steps I have to take to get mod_mono running after installing the binary install package? It is a RedHat 9.0 server running kernel version 2.4.26, and Apache version 1.3.33. I would really like an automated setup if possible, however

[Mono-list] Virtual Hosts Problem

2005-06-20 Thread Howard Cole
Help I am running mono 1.1.7 and mod mono 1.0.9 and cannot more than one named virtual host to work. This is the relevant extract from my httpd.conf file. VirtualHost *:80 ServerAlias test1.selestial.com ServerName test1.selestial.com DocumentRoot /var/www/test1 DirectoryIndex

Re: [Mono-list] Installing Apache 1.3 and mod_mono question.

2005-06-20 Thread Martin Hinks
Try http://www.codeproject.com/cpnet/introtomono2.asp Seems quite informative and has steps for Apache 1.3.x Martin On 6/20/05, Nick Berardi [EMAIL PROTECTED] wrote: I am setting up Mono on a clients server is there any special steps I have to take to get mod_mono running after installing the

Re: [Mono-list] Virtual Hosts Problem

2005-06-20 Thread Howard Cole
Another case of RTFM. I changed httpd.conf as follows: VirtualHost *:80 ... AddMonoApplications test2 test1.selestial.com:/:/var/www/test1 Location / MonoSetServerAlias test2 SetHandler mono /Location /VirtualHost Now works fine. Although I cannot get both working on

[Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Kevin Flanagan
I posted a problem recently using MySql with Mono 1.1.7 (which is fine under Mono 1.1.4). For info, same problem exists under Mono 1.1.8. If anyone gets a chance to reproduce it (details below) who knows MySql and Mono and might be able to suggest a workaround, I'd be very grateful ... Thanks in

Re: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Martin Hinks
Hmmm, seems to be a problem with Mono although I haven't tried to reproduced (yet)... http://www.mono-project.com/MySQL Try using the ByteFX (which isnt supported any longer but should work) as detailed on that page... might be some more info about your problem there... Sorry, but this isn't my

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
After a little bit of debugging, I have discovered that when there are QueryString parameters, passed such as /images/pic1.jpg?thumb=1 the ProcessRequest method of the Handler doesn't get called. I added a line to the ProcessRequest medhod to write a log to a text file for each iteration of the

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Martin Hinks
Seems like a bug with passing the QS through to the handler, maybe file a BugZilla report unless anyone else has more info Martin On 6/20/05, Marc DM [EMAIL PROTECTED] wrote: After a little bit of debugging, I have discovered that when there are QueryString parameters, passed such as

RE: [Mono-list] Installing Apache 1.3 and mod_mono question.

2005-06-20 Thread Nick Berardi
Thanks for the help, I just have some follow up questions now. Okay I followed these directions. From these direction at http://www.codeproject.com/cpnet/introtomono2.asp I can confirm that XSP does work. However I ran into problems getting mod_mono to work. I keep getting back the error

Re: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Joe Audette
Kevin, My project, mojoportal uses MySQL and I have not had any problems under mono 1.1.7. In fact my site is running on that version currently. http://www.mojoportal.com The only difference I can see is you are running mono on windows and mine is running on linux. I gather that MySQL is running

RE: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Kevin Flanagan
Hello Joe - yes, the app (and the simple csharp test) run fine under the .NET runtime. I'm sure you're right that it's only a problem on XP and works on Linux ... seems likely Mono is far more used on Linux so problems far more likely to be spotted. Still, I'm hoping there might be a workaround,

RE: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Kevin Flanagan
Hello Martin - I have now tried the ByteFX driver (thanks for the suggestion), but it gives me a different error: Client does not support authentication protocol requested by server; consider upgrading MySQL client. Given that it all runs ok with Mono 1.1.4 (or the MS .NET runtime), I think that

Re: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Bill Middleton
Kevin Flanagan wrote: Hello Martin - I have now tried the ByteFX driver (thanks for the suggestion), but it gives me a different error: Client does not support authentication protocol requested by server; consider upgrading MySQL client. Given that it all runs ok with Mono 1.1.4 (or the MS .NET

Re: [Mono-list] Installing mono 1.1.8 on Ubuntu

2005-06-20 Thread Paulo Aboim Pinto
yep ... I've run the command and I still having the same problem!!! how can I uninstall the libc that I have and install without uninstall the dependency .. to install the libc that this program need?? On Mon, 2005-06-20 at 10:22 +0100, Martin Hinks wrote: Have you tried the suggestion to run

[Mono-list] Re: MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Michael Rasmussen
man, 20 06 2005 kl. 14:25 -0400, skrev Message: 2 Date: Mon, 20 Jun 2005 18:39:40 +0100 From: Kevin Flanagan [EMAIL PROTECTED] Subject: RE: [Mono-list] MySql 1.1.7 problem also under 1.1.8 To: Joe Audette [EMAIL PROTECTED], mono-list@lists.ximian.com Message-ID: [EMAIL PROTECTED]

[Mono-list] Re: Mono-list Digest, Vol 2, Issue 37

2005-06-20 Thread Michael Rasmussen
man, 20 06 2005 kl. 14:25 -0400, skrev Message: 2 Date: Mon, 20 Jun 2005 18:39:40 +0100 From: Kevin Flanagan [EMAIL PROTECTED] Subject: RE: [Mono-list] MySql 1.1.7 problem also under 1.1.8 To: Joe Audette [EMAIL PROTECTED], mono-list@lists.ximian.com Message-ID: [EMAIL PROTECTED]

[Mono-list] Re: Mono-list Digest, Vol 2, Issue 37

2005-06-20 Thread Michael Rasmussen
man, 20 06 2005 kl. 14:25 -0400, skrev Message: 6 Date: Mon, 20 Jun 2005 19:20:34 +0100 From: Paulo Aboim Pinto [EMAIL PROTECTED] Subject: Re: [Mono-list] Installing mono 1.1.8 on Ubuntu To: Martin Hinks [EMAIL PROTECTED] Cc: Mono-list@lists.ximian.com Message-ID: [EMAIL PROTECTED]

RE: [Mono-list] MySql 1.1.7 problem also under 1.1.8

2005-06-20 Thread Kevin Flanagan
Aha - right, yes, having done the trick with OLD_PASSWORD, I can get the ByteFX driver to work fine. So I switched the app to use that, rather than the one from MySql, and the app now works fine with Mono 1.1.8 under XP. So thank you, Martin, Bill and Dilton. I'm a bit twitchy about deploying

[Mono-list] Building a cross-platform networked client on Mono...

2005-06-20 Thread Kirk Marple
i have a need to build a new client application, which does basically four things... talks via Windows Sockets (async i/o)to a remote server over both TCP and UDP, does file I/O, exposes UI for picking files on the client and showing log/status messages, and it does interop to a native 3rd

[Mono-list] Important 1.1.8.1 bug fix release.

2005-06-20 Thread Miguel de Icaza
Hello, Mono 1.1.8.1 is a minor bug fix release to Mono 1.1.8, for details on 1.1.8 see its release notes. Important Bug Fixes in 1.1.8.1 Fixed a bug in our Socket.Select implementation that was introduced in 1.1.8 which failed to work on read descriptors (Gonzalo). Fixed a long-standing