[Mono-list] Socket class

2005-10-11 Thread Stefano Incontri
Hi All, does anybody know a good and simple asynchronous c# class to handle sockets? Thanks Stefano ___ Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB http://mail.yahoo.it __

[Mono-list] newbie: using mono for Web Services

2005-10-11 Thread Ivano Luberti
Hi, I have just installed Mono 1.9.1 and started reading docs and articles about it. I have also installed XSP to try the .NET features. I'm writing to ask you all an opinion about using mono in a project I'm invoved into. My company has to develop a software that has to consume a Web Service

[Mono-list] (no subject)

2005-10-11 Thread Gayan Perera
hi all, i'm trying to run a C#.NET winform ase application which has a Datepicker on it in mono. the the datepicker is not working. does mono  fully support  winforms on linux ? or in windows ? thank you. Gayan. ___ Mono-list maillist - Mono-list@list

[Mono-list] Problem with Winforms on Mono

2005-10-11 Thread Gayan Perera
hi all, i'm trying to run a C#.NET winform ase application which has a Datepicker on it in mono. the the datepicker is not working. does mono  fully support  winforms on linux ? or in windows ? thank you. Gayan. ___ Mono-list maillist - Mono-list@list

Re: [Mono-list] Problem with Winforms on Mono

2005-10-11 Thread Peter Dennis Bartok
Please log a bug with a description of what is not working and some sample code to reproduce. Cheers, Peter -Original Message- From: "Gayan Perera" <[EMAIL PROTECTED]> To: Date: Tuesday, 11 October, 2005 03:57 Subject: [Mono-list] Problem with Winforms on Mono hi all, i'm trying to

[Mono-list] Rendering of the elements - a problem with MSIE

2005-10-11 Thread Marek Habersack
Hello everybody, I've been playing with the tabcontrol2 code to make it generate a tab control like the one implemented by the Alistapart folks [1]. Changing the code was easy and it was generating the toolbar with custom/default CSS without any problems. Everything was fine until I tested the e

[Mono-list] (hack works) NOAA Soap Server and System.Web.Services problems

2005-10-11 Thread Jimmy
Hello, I tried the hack to force the client to Http 1.0 and it works correctly. I looked at the net trace and I can see the correct HTTP 1.0 response. The NOAA website mentions .Net 2 Beta3. However, I don't know which one this is (MSDN?). However, I did download the latest VC

[Mono-list] Socket class

2005-10-11 Thread Stefano Incontri
Hi All, does anybody know a good and simple asynchronous c# class to handle socket? Thanks Stefano ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Verifying end certificate against root certificates in store

2005-10-11 Thread Hellan.Kim KHE
I'm looking for the "correct" way of verifying the issuer of a X509Certificate (end certificate) against all root certificates in found in the LOCAL_MACHINE "Trusted root authorities" certificate store in Windows. Does anyone have some example code they want to share for doing that task? Thanks!

Re: [Mono-list] Verifying end certificate against root certificates in store

2005-10-11 Thread Sebastien Pouliot
Hello Kim, You either have to use Fx 2.0 which has much expanded support for X.509 or p/invoke into CryptoAPI. IIRC Mentalis has a library that wraps most of CryptoAPI for .net/windows apps. On Tue, 2005-11-10 at 15:46 +0200, Hellan.Kim KHE wrote: > I'm looking for the "correct" way of verifying

SV: [Mono-list] Verifying end certificate against rootcertificates in store

2005-10-11 Thread Hellan.Kim KHE
Hi Sebastien Okay, so it can't be done with the current build :( Then what about some functionality to retrieve all certificates from the store. Is that available? I could always do the verifying manually then. Or I could do a more specific search for a root certificate with a Common Name that

Re: [Mono-list] pb on Winforms

2005-10-11 Thread Paul F. Johnson
Hi, > This program function very well on Windows with the Windows's CLR. > But with the Mono's CLR , there are problems on Linux and on Windows. > What's the problem ? Winforms is not fully implemented on non-Windows systems yet. It's getting there, but not fully happy yet. I've not copied

Re: [Mono-list] mono for slack

2005-10-11 Thread Paul F. Johnson
Hi, > i've look for, but i not founded the tgz's packages for slack. > so i used rmp2tgz on redhat rpm's... > anyone have made it before? I think you'd probably be better off grabbing the source from svn and running make get-monolite-latest then making it yourself. > it will work? It should wor

Re: SV: [Mono-list] Verifying end certificate against rootcertificates in store

2005-10-11 Thread Sebastien Pouliot
Hello Kim, My previous answer was a little more general (than certificate verification). Mono itself doesn't offer, nor plan to, any kind of integration with the Windows certificate store. You either have to: (a) use Fx 2.0 new X.509 classes; (b) p/invoke into CryptoAPI yourself; or (c) use exist

[Mono-list] Regular expressions help

2005-10-11 Thread Loren Bandiera
I'm trying to write a parser for the Mozilla/Firefox history file. The format of the file is very ugly. The first starts off with a comment marking the version: // Then you get the table that defines what the fields mean: < <(a=c)> // (f=iso-8859-1) (8A=Typed)(8B=LastPageVisited)(80=ns:hist

Re: [Mono-list] newbie: using mono for Web Services

2005-10-11 Thread Steven Bell
I am using mono to develop several web services. One project is returning mostly DataSets (.net constructs) and the main program calling the web service is a C# app written in Visual Studio 2005. The web service is Mono 1.8 on Fedora Core 4. There was no problem handing data around between the

[Mono-list] Problem in Mono WebServices

2005-10-11 Thread Gayan Perera
i'm runing a webservice in Fedora 3 using mod_mono on apachee. so i did a little tress tesing on it using the below code,  private void button1_Click(object sender, System.EventArgs e)     {     for (int i=0; i < 150;i++)     {     System.Threading.Thread t=new Sy