Re: [Mono-dev] Strange ASP.NET bug...

2007-01-18 Thread John Anderson
I can confirm that in ASP.NET 2.0 and ASP.NET 1.1 both render the following HTML without any tags missing (including thead's): %@ Page Language=C# AutoEventWireup=true CodeFile=Default.aspx.cs Inherits=_Default % !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

Re: [Mono-dev] Strange ASP.NET bug...

2007-01-18 Thread Marek Habersack
On Thu, 18 Jan 2007 02:13:21 -0700, John Anderson [EMAIL PROTECTED] scribbled: I can confirm that in ASP.NET 2.0 and ASP.NET 1.1 both render the following HTML without any tags missing (including thead's): The bug was fixed in svn trunk, as of r71193 regards, marek signature.asc

[Mono-dev] System.Net.Mail

2007-01-18 Thread Damien Churchill
I've attached the class I was using to send mail. I had to modify a part of SmtpClient to allow this to work with exim. After looking at SmtpClient it appears that it always sends the AUTH command despite not it been given credentials, which would then throw 503 AUTH command used when not

Re: [Mono-dev] System.Net.Mail

2007-01-18 Thread David Elkind
Hi Damien, I would say the right fix is to initialize the useDefaultCredentials field to false. I will fix this now. Sorry. David. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Damien Churchill Sent: Thursday, January 18, 2007 11:59 AM To:

Re: [Mono-dev] Marshalling wchar_t

2007-01-18 Thread Jonathan Pryor
On Thu, 2007-01-18 at 12:03 +1100, Rajesh Gupta wrote: ...I read that it was due to the number of bytes used by wchar_t in Windows and Linux. Mono seems to be marshalling it like windows wchar_t even on Linux and thus the junk characters. Is there a way I can get wchar_t to work through

[Mono-dev] libmtp bindings

2007-01-18 Thread Ted Bullock
I am attempting to write mono bindings for the libmtp library as a part of a final year software engineering project. Although I have worked on a couple of smaller mono projects while at school, I have never directly worked with the managed/unmanaged aspects of the runtime. Right now I am

Re: [Mono-dev] libmtp bindings

2007-01-18 Thread Jonathan Pryor
On Thu, 2007-01-18 at 03:15 -0700, Ted Bullock wrote: Here is the problem; I am trying to write a binding for the following c function call: void Get_Devices_List(device_entry_t ** const, int * const); Notice the location of const. The target is constant, but the pointer isn't. You have

Re: [Mono-dev] multiple target patterns. on cygwin Was: Patch to add missing v2 System.Exceptionconstructors, and HResult consistency

2007-01-18 Thread Andy Hume
Robert Jordan wrote: Andy Hume wrote: [...] Is the answer still to use an older version of make? Yes. [...] which in turn is linked from Mono's Wiki: http://mono-project.com/Compiling_Mono#Windows_Compilation I've been reading that page many time in the past days and weeks, and

[Mono-dev] Mono (C#) on Solaris10/x86

2007-01-18 Thread Guenter Feldmann
Hi Mono Developers I successfully bootstraped mono-1.2.2.1 on Solaris10/x86. The msc and gmcs compilers are running and I could even use the compiler for the Zonnon language. (http://www.bluebottle.ethz.ch/Zonnon/) The following has to be done: 1) Install Boehm GC 7.0alpha7. The stable

[Mono-dev] System.data.oracleclient with dataset

2007-01-18 Thread Ruffel Antoine (DCTI)
Hi, I'm testing the possibility to execute my applications (developed with visual studio 2005) with mono. I have some troubles with the use of System.data.oracleclient : - First, I've done some tests with simple code found in http://www.mono-project.com/Oracle. - Compiled

Re: [Mono-dev] System.data.oracleclient with dataset

2007-01-18 Thread A Nagappan
Hi Ruffel, I request you to file a bug on this - http://bugzilla.ximian.com/enter_bug.cgi?product=Mono%3A%20Class%20Libraries and in Component select 'System.Data'. Thanks Nagappan Nagappan A [EMAIL PROTECTED] Linux Desktop Testing Project - http://ldtp.freedesktop.org

Re: [Mono-dev] [Mono-list] serial port problem

2007-01-18 Thread Victor Rocha
On 1/16/07, Mario Munda [EMAIL PROTECTED] wrote: Hi. I have a problem receiving data on the serial port. My gmcs version is: bash2-2.05b# mono -V Mono JIT compiler version 1.2.20061229, (C) 2002-2006 Novell, Inc and Contributors. www.mono-project.com TLS: normal

Re: [Mono-dev] [Mono-list] serial port problem

2007-01-18 Thread Carlos Alberto Cortez
Hey, Could you cook a test case? That way we can try to take a look at the issue. Carlos. First, I can succesfully read a text string, when I loopback a serial cable, connecting pins 2 and 3 I send the string and can read it immediatly, it worked fine for me in Linux (running mono as

[Mono-dev] libmtp bindings

2007-01-18 Thread Ted Bullock
Hi Jonathan, Ok I got it working with a combination of your help (which was very useful) and a prodigious supply of testing. If I have any more problems, I will post back to this thread. Thanks, -Ted ___ Mono-devel-list mailing list

Re: [Mono-dev] libmtp bindings

2007-01-18 Thread Ted Bullock
Ok, I am still having a bit of trouble here. The double indirection thing is pretty confusing when trying to deal with it across the unmanaged/managed barriers. Here is the original c structure. It is pretty straightforward. struct device_entry_struct { char *name; uint16_t vendor_id;