[Mono-list] Cairo dependency issues and Xft

2003-10-31 Thread Marcus
I wanted to mention this in case anyone else runs into this problem. Cairo was recently added to Mono as a dependency. (If Cairo were detected and its use disabled when not present, I might call it an *optional* dependency, but this is not the case. One of the (recursive?) dependencies of Cairo

[Mono-list] Basic Authentication

2003-10-31 Thread Helge Hess
Hi there, is HttpWebRequest basic authentication supposed to work with Mono 0.28? I somehow don't get this working: ---snip--- HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); /* setup authentication */ request.PreAuthenticate = true; NetworkCredential c

Re: [Mono-list] Determining the platform at compile and run time

2003-10-31 Thread Jonathan Pryor
Just to continue Fergus' line of reasoning, Type Reflector (CVS module: type-reflector) does the same thing. It has three different front-ends (Gtk#, System.Windows.Forms, and Console), that you can select by using either a command-line argument (--displayer=NAME) or by setting an option on the ty

Re: [Mono-list] System.Windows.Forms.ComboBox Perculiarities

2003-10-31 Thread Roelof Blom
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Perhaps the article at http://www.ingorammer.com/Articles/SealedIsGood.html is of interest to you? John BouAntoun wrote: you think they could have wrapped them properly? I don't want to delve into MFC just to be able to catch my OnCreateControl -

Re: [Mono-list] About Mono.net???I have some doubts.....

2003-10-31 Thread Richard Torkar
On Thu, 2003-10-30 at 17:57, victorinfo wrote: > I would like to know if the code generated by > mono .net produce portability independence in different > equipments. How i can install code produced in windows > mono.net for Unix or mobile systems? Maybe this might answer your question? http:/

[Mono-list] Re: Bridges to SOAP and/or .NET ?

2003-10-31 Thread Peter Van Osta
Hi, Thank you all for the information about bridging CORBA and SOAP / .NET. SOAP to CORBA: http://soap2corba.sourceforge.net/ and .NET to CORBA: http://remoting-corba.sourceforge.net/ I will take at look at both. Best regards, Peter Van Osta Union Biometrica N.V./S.A. European Scientific Opera

Re: [Mono-list] Problem build with snapshoot today

2003-10-31 Thread Mohammad DAMT
On Rab, 2003-10-29 at 17:09, Jackson Harper wrote: > There appears to be a problem with the monocharge's, possibly from being > built with an old mcs. Try using a daily. Hopefully we can get this > issue resolved tommorow. still doesn't work with current CVS, rh 7.3, rh 9 but I was able to compile

[Mono-list] Any hosting providers that offer Mono?

2003-10-31 Thread Stuart Ballard
Does anyone know of any hosting providers that offer Mono-based ASP.NET hosting? I'm looking for cheap but reliable hosting with Mono and PostgreSQL, if such a thing exists. Stuart. -- Stuart Ballard, Senior Web Developer FASTNET - Web Solutions (215) 283-2300, ext. 126 www.fast.net

[Mono-list] About Mono.net???I have some doubts.....

2003-10-31 Thread victorinfo
I would like to know if the code generated by mono .net produce portability independence in different equipments. How i can install code produced in windows mono.net for Unix or mobile systems? thank so much,.. __

Re: [Mono-list] Determining the platform at compile and run time

2003-10-31 Thread Fergus Henderson
On 31-Oct-2003, A Rafael D Teixeira <[EMAIL PROTECTED]> wrote: > I could use your try/catch solution, but I prefer to use "decisions > construed over known information" than "try/catch" for performance reasons. If that's the only reason, then another alternative that does not use try/catch is to

Re: [Mono-list] Determining the platform at compile and run time

2003-10-31 Thread A Rafael D Teixeira
From: Fergus Henderson <[EMAIL PROTECTED]> On 29-Oct-2003, Chris Seaton <[EMAIL PROTECTED]> wrote: > How do I know what OS my program is running on at run time? Why do you care? In general, it is a bad idea to test for particular operating systems. In my case I needed to know which specific libra