Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Konstantin Triger
Hello Onur, I don't quite understand which source file gives you this error. According to what you're saying, the web site comes without source files and toolkit should be compiled as a separate dll and referenced from the web site (put to the bin folder / GAC). Regards, Konstantin

[Mono-dev] Compilation and App.ico

2007-08-30 Thread pablosantosluac
Hi, After r84774 I'm trying to compile all the plastic code with mono. I've detected the compiler needs the App.ico files to be in non readonly state. .NET doesn't complain... pablo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Onur Gumus
Hello Konstantin According to what you're saying, the web site comes without source files and toolkit should be compiled as a separate dll and referenced from the web site (put to the bin folder / GAC). This is not quite true. As you know although the toolkit must be compiled as a seperate dll

[Mono-dev] Bugzilla bug #81063 [ARM] Hit assertion in inssel-float.brg(CEE_STIND_R4) - remoting, ARM, vfp softfloat

2007-08-30 Thread Dean Jenkins
Hi, My target board is a big endian IXP420 (XScale) and I'm using mono with no ARM FPU support, therefore JIT is using soft float. I'm running some mono tests and some tests fail due to the assert for CEE_STIND_R4 being reached. There seems to be a float used in

Re: [Mono-dev] [System.IO.Ports] How to configure the serial port?

2007-08-30 Thread Paolo Molaro
On 08/28/07 David Arnaud-Goddet wrote: I find that :http://www.mono-project.com/HowToSystemIOPorts But it doesn't explain how to configure the serial port (baudrate, Data bits, Parity, Stop bits and Flow control). I try to use this peice of code but I obtain a TimeoutException. My application

Re: [Mono-dev] Bugzilla bug #81063 [ARM] Hit assertion in inssel-float.brg(CEE_STIND_R4) - remoting, ARM, vfp softfloat

2007-08-30 Thread Paolo Molaro
On 08/30/07 Dean Jenkins wrote: I'm running some mono tests and some tests fail due to the assert for CEE_STIND_R4 being reached. There seems to be a float used in System.Runtime.Serialization.Formatters.Binary.ObjectReader.ReadValue in ReadArrayOfPrimitiveType() for case TypeCode.Single and I

Re: [Mono-dev] Bugzilla bug #81063 [ARM] Hit assertion in inssel-float.brg(CEE_STIND_R4) - remoting, ARM, vfp softfloat

2007-08-30 Thread Dean Jenkins
Hi lupus, BTW. Your E-mail did not contain an attachment. Please can you try again ? Perhaps add your attachment to the bugzilla bug #81063 ? Also, I can't access the attachment in bugzilla from the original reporter of the bug. My Firefox browser wants to save the cgi script and not the

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Onur Gumus
Jens thanks for the reply. - Does your public server runs linux ? I mean the url you have given, Does it run on Mono ? - As a final resort I've deleted the TodoItems.xsd. Now that the site runs on my local. I also have to delete the line : ajaxToolkit:ToolkitScriptManager runat=server

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Konstantin Triger
Ok, now I see that you are running a Toolkit sample web site. I would suggest not running such a complex application from the beginning, since it's hard to track arising problems, but start with something simple. In the same time I see that Jens Wurster had successfully run entire Toolkit

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Onur Gumus
Allright. But I never thought that sample application is complex. After all it's just a show case application. Anyway I'll try to go more simple and let you know what works and what does not. In the same time I see that Jens Wurster had successfully run entire Toolkit sample with mono. Yeah I am

Re: [Mono-dev] Compilation and App.ico

2007-08-30 Thread Miguel de Icaza
I've detected the compiler needs the App.ico files to be in non readonly state. .NET doesn't complain... Can you provide more information, hopefully a bug report? ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Jens Wurster
Hello Onur, yes, my public server runs linux. ;-) I have deleted TodoItems.xsd and the specified line in ToolScriptManager.skin, too. I have made some more modifications. If you are interested, I can give a report, but this will take a while. Jens Jens thanks for the reply. - Does

Re: [Mono-dev] Bugzilla bug #81063 [ARM] Hit assertion in inssel-float.brg(CEE_STIND_R4) - remoting, ARM, vfp softfloat

2007-08-30 Thread Paolo Molaro
On 08/30/07 Dean Jenkins wrote: BTW. Your E-mail did not contain an attachment. Please can you try again ? Perhaps add your attachment to the bugzilla bug #81063 ? I committed the FIXMEs directly to svn: look in mini.c and grep for CEE_STIND_R4. Also, I can't access the attachment in bugzilla

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Jens Wurster
Hello Konstantin, In the same time I see that Jens Wurster had successfully run entire Toolkit sample with mono. No, that's not true. These controls are not completely running at the moment: AlwaysVisibleControl, AutoComplete, CascadingDropDown, DynamicPopulate, FilteredTextBox,

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Miguel de Icaza
Hello Jens, AlwaysVisibleControl, AutoComplete, CascadingDropDown, DynamicPopulate, FilteredTextBox, HoverMenu, MaskedEdit, NumericUpDown, Rating, ReorderList, SlideShow and ValidatorCallout Would you mind filing bugs for these on: www.mono-project.com/Bugs Describing the problem?

[Mono-dev] Conditional compilation

2007-08-30 Thread pablosantosluac
Hi, I have a code fragment like the following: using System; using System.Diagnostics; namespace conditionalcompilation { class Class1 { static void Main(string[] args) { Class1 me = new Class1(); me.Go(); } [Conditional(YELLOW)] public void Go() {

Re: [Mono-dev] Conditional compilation

2007-08-30 Thread Gert Driesen
Pablo, What happens if you compile using gmcs, because NAnt is probably targeting the 2.0 profile ? I know there's a issue in gmcs where conditional compilation does not work correct for generic methods (http://bugzilla.ximian.com/show_bug.cgi?id=82443), but it should work for non-generic

Re: [Mono-dev] Conditional compilation

2007-08-30 Thread Robert Jordan
Angel Marin wrote: pablosantosluac escribió: I have a code fragment like the following: [...] csc target=winexe output=conditional.exe debug=${debug} define=${define} [...] But when I run the app no output is generated. If I compile it directly with mcs it works as

Re: [Mono-dev] Conditional compilation

2007-08-30 Thread pablosantosluac
I specified NAnt to use 1.0 with -t:mono.1.0 - Original Message - From: Gert Driesen [EMAIL PROTECTED] To: 'pablosantosluac' [EMAIL PROTECTED]; mono-devel-list@lists.ximian.com Sent: Thursday, August 30, 2007 10:00 PM Subject: RE: [Mono-dev] Conditional compilation Pablo, What

Re: [Mono-dev] Conditional compilation

2007-08-30 Thread pablosantosluac
it works if you compile it with mcs or csc... - Original Message - From: Angel Marin [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Thursday, August 30, 2007 10:35 PM Subject: Re: [Mono-dev] Conditional compilation pablosantosluac escribió: I have a code fragment like

Re: [Mono-dev] Conditional compilation

2007-08-30 Thread pablosantosluac
Yes! :-) - Original Message - From: Angel Marin [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Thursday, August 30, 2007 10:35 PM Subject: Re: [Mono-dev] Conditional compilation pablosantosluac escribió: I have a code fragment like the following: [...] csc

Re: [Mono-dev] System.Web.Extension

2007-08-30 Thread Jens Wurster
Hello Miguel, I have filled out some bug reports in bugzilla. I will add more in the next days. I have detected that each control of the toolkit which interact with a web service does not work, but there is no error message or something else. It just does not work. :-/ Affected are AutoComplete,

[Mono-dev] Mono 1.2.5 Released and Published

2007-08-30 Thread Wade Berrier
Hi, Mono 1.2.5 has been released. Release notes are here: http://go-mono.com/archive/1.2.5/ Downloads are available from: http://mono-project.com/Downloads There are also rpms in the openSUSE Build Service (which has RPMS for newer Fedora distros and suse factory):

Re: [Mono-dev] Compilation and App.ico

2007-08-30 Thread pablosantosluac
Yes, it is the same but, I compiled 84774 and the problem is still there... I guess 82617 is not included... - Original Message - From: Andy Hume [EMAIL PROTECTED] To: 'pablosantosluac' [EMAIL PROTECTED]; mono-devel-list@lists.ximian.com Sent: Thursday, August 30, 2007 12:31 PM Subject:

[Mono-dev] [PATCH] System.Configuration.Provider.ProviderBase.cs

2007-08-30 Thread John Anderson
When dealing with the configuration, after the ProviderBase finds the Description it needs to remove it from the NameValueCollection, This is how it happens in MS.NET. heres the patch: Index: ProviderBase.cs === --- ProviderBase.cs