Re: [Mono-devel-list] System.Web.UI.Control - FindControl problem

2005-03-09 Thread Gonzalo Paniagua Javier
On Tue, 2005-03-08 at 17:52 +0200, Ilya Kharmatsky wrote: I've opened new bug: http://bugzilla.ximian.com/show_bug.cgi?id=73479 for this issue and added to bug modified patch. Please ignore the previous patch - posted to mono-devel-list. This is fixed now. Thanks. -Gonzalo

Re: [Mono-devel-list] Patch for SqlConnection

2005-03-11 Thread Gonzalo Paniagua Javier
On Fri, 2005-03-11 at 12:56 +0530, Sureshkumar T wrote: Attached there's a small patch that adds a finalizer to SqlConnection and moves the 'disposed = true' into the finally in Dispose(bool). SqlConnection does not have any unmanaged resources. Hence, IMHO, it is not necessary to have

Re: [Mono-devel-list] XSP updates

2005-04-05 Thread Gonzalo Paniagua Javier
On Wed, 2005-04-06 at 00:04 -0400, Brian Ritchie wrote: Gonzalo, I have a number of updates to XSP that I would like to make, but I wanted to run them past you before I started submitting patches. 1) HTTPS support. I successfully integrated the Mono.Security SslServerStream into XSP and

RE: [Mono-devel-list] PATCH: reworked async IO for Socket

2005-04-08 Thread Gonzalo Paniagua Javier
On Fri, 2005-04-08 at 11:07 -0700, JD Conley wrote: This patch intercepts the calls before they are added to the thread pool and uses a single thread for polling on all the sockets running asynchronous read/write. Once sockets are ready, it dispatches the work item to the threadpool

Re: [Mono-devel-list] PATCH: reworked async IO for Socket

2005-04-08 Thread Gonzalo Paniagua Javier
On Fri, 2005-04-08 at 20:35 +0100, Alex Chudnovsky wrote: Gonzalo Paniagua Javier wrote: The code that we have right does not have any performance issue and works on any system that have select(). And we are just 'wasting' one thread for polling on all the sockets with ongoing async

Re: [Mono-devel-list] Read failure with XSP on Windows

2005-04-17 Thread Gonzalo Paniagua Javier
On Wed, 2005-04-13 at 09:24 +0100, Kevin Flanagan wrote: Hello - I've installed Mono 1.1.4 on XP Pro - am writing an ASP.NET app to run under .NET and Mono, so it's very helpful to be able to test both on the same OS. The app (quite simple at present) basically runs fine under Mono, after a

RE: [Mono-devel-list] Read failure with XSP on Windows

2005-04-18 Thread Gonzalo Paniagua Javier
On Mon, 2005-04-18 at 18:36 +0100, Kevin Flanagan wrote: That sounds good! Excuse my ignorance, but does that mean that it wouldn't be in a numbered-release-with-installer for a while? And just to be clear, you're not referring to the IE-extra-linefeed issue mentioned by Curtis Wensley, which

Re: [Mono-devel-list] Mono on a multipocessor

2005-04-21 Thread Gonzalo Paniagua Javier
On Thu, 2005-04-21 at 06:36 -0400, Jonathan Pryor wrote: Mono also has a ThreadPool, for which threads are created on-demand. The ThreadPool supports a maximum of 50 threads/CPU on Linux, 25/CPU on Windows. Those numbers are the default, not a maximum. -Gonzalo

Re: [Mono-devel-list] Mono on a multipocessor

2005-04-21 Thread Gonzalo Paniagua Javier
On Thu, 2005-04-21 at 16:44 +0100, Alex Chudnovsky wrote: Sunny wrote: I understand desire to have maximum compatibility with actual .NET, but surely having higher limits on number of threads is not something that would be bad? From what I understand Windows Socket IO uses Completion

Re: [Mono-devel-list] Mono on a multipocessor

2005-04-21 Thread Gonzalo Paniagua Javier
On Thu, 2005-04-21 at 20:36 +0100, Alex Chudnovsky wrote: From what I understood blocking IO (at least for sockets) is done by actually using async IO and making artificial wait for its to finish and then return result, and therefore usage of number of threads should be as much or higher

Re: [Mono-devel-list] Odd problem

2005-04-22 Thread Gonzalo Paniagua Javier
On Fri, 2005-04-22 at 13:48 +, Jonathan Stowe wrote: I was going to say try setting your locale to en_GB.UTF-8 export LANG=en_GB.UTF-8 but I have just tried print the pound sign here and it does the same thing :-( I then set LANG=en_GB.is08859-1 and it works fine. I think

Re: [Mono-devel-list] AIO

2005-04-23 Thread Gonzalo Paniagua Javier
On Fri, 2005-04-22 at 20:57 -0300, Patricio Jutard wrote: Could someone provide me with a sample of how to use the new AIO implementation? The best of it is that you don't even notice, but you're using it already if you're tracking SVN/daily/snapshots. Any HttpWebRequest or Socket.Begin* will

Re: [Mono-devel-list] Patch for NullReferencException in System.Web.Caching

2005-04-26 Thread Gonzalo Paniagua Javier
On Tue, 2005-04-26 at 20:23 +0300, Eyal Alaluf wrote: Hi. We have seen recently in several applications that use System.Web.Caching that they have an occasional NullReferenceException. This was also reported a few times to the mono-list. After investigation and creation of a test we found

Re: [Mono-devel-list] TypeDescriptor.GetEditor

2005-04-28 Thread Gonzalo Paniagua Javier
On Tue, 2005-04-26 at 21:33 -0400, Jonathan S. Chambers wrote: Here is a patch for the TypeDescriptor. I implemented one of the three overloads for GetEditor (and will probably complete the other two with a bit more research). I ran into this with the PropertyGrid in SWF, and the patch

Re: [Mono-devel-list] System.Web.Hosting

2005-05-08 Thread Gonzalo Paniagua Javier
On Sun, 2005-05-08 at 17:58 +0200, Matthijs ter Woord (meddochat) wrote: Hi Everybody, When using ApplicationHost.CreateApplicationHost, are the values set using AppDomain.SetData the same as on MS.NET? They might or might not. Some of them such as appVHost and others are the same thing.

Re: [Mono-devel-list] Mono ASP.NET is very slow with big html pages...

2005-05-11 Thread Gonzalo Paniagua Javier
On Wed, 2005-05-11 at 10:41 +0200, Hubert FONGARNAND wrote: I'm currently working on an intranet project. We want to develop it as a cross-platform project. It would be useful that it could run under MS.NET or Mono... I'm working with the svn version of mono 1.1.7.99 I've seen that mono

Re: [Mono-devel-list] Automatic tests for ASP.NET

2005-05-16 Thread Gonzalo Paniagua Javier
On Mon, 2005-05-16 at 14:17 +0300, Ilya Kharmatsky wrote: Hi, All! I'm trying to run any available tests to System.Web / ASP.Net. Unfortunately, I found only manual tests (examples) coming with XSP install, and I would prefer use automatic tests. I found following link

Re: [Mono-devel-list] Getting path of bundled executable at runtime

2005-05-16 Thread Gonzalo Paniagua Javier
On Fri, 2005-05-13 at 16:06 +0300, Alexandros Frantzis wrote: Hello, I need to find out the path of a bundled mono executable (built with mkbundle) at runtime. Until now I have been using Assembly.GetCallingAssembly().Location but this fails in the bundle because the assemblies are loaded

Re: [Mono-devel-list] [PATCH] System.Runtime.InteropServices Patch

2005-05-16 Thread Gonzalo Paniagua Javier
On Sun, 2005-05-15 at 00:23 +0200, Andreas Nahr wrote: Hi, this is a patch which adds the missing Interfaces to System.Runtime.InteropServices and changes the existing ones to .Net 1.1 (because they do already exist in v1.1) Somebody please review and commit. This patch and the ont for

Re: [Mono-devel-list] mod-mono-server has constant cpu activity

2005-05-26 Thread Gonzalo Paniagua Javier
On Tue, 2005-05-24 at 01:40 +0200, Eduardo Arizcuren wrote: First of all I want to salute everybody: I have just joined this list. I have a RH9 web server with kernel-2.4 + Apache-2.0.47 + mono-1.1.7 + xsp-1.0.9 + mod_mono-1.0.9. I have a web application running on an apache VirtualHost.

Re: [Mono-devel-list] Arguments with spaces when starting external program through System.Diagnostics.Process

2005-05-26 Thread Gonzalo Paniagua Javier
On Sun, 2005-05-22 at 09:56 +0800, Sebastian Nowozin wrote: Hence, my question: Is it possible to explicitly escape the arguments, or - alternatively - a way to explicitly set each argument vector on its own? (like argv[1], argv[2], etc.) You just need to use something like 'argument with

Re: [Mono-devel-list] Arguments with spaces when starting externalprogram through System.Diagnostics.Process

2005-05-26 Thread Gonzalo Paniagua Javier
On Thu, 2005-05-26 at 17:59 -0400, Jonathan Gilbert wrote: At 05:53 PM 26/05/2005 -0400, Gonzalo wrote: On Sun, 2005-05-22 at 09:56 +0800, Sebastian Nowozin wrote: Hence, my question: Is it possible to explicitly escape the arguments, or - alternatively - a way to explicitly set each

Re: [Mono-devel-list] Request Timeout when SOAP call returns

2005-05-27 Thread Gonzalo Paniagua Javier
On Fri, 2005-05-27 at 14:40 +0100, Aidan Skinner wrote: I'm seeing the following exception when a particular SOAP call returns: System.Net.WebException: The request timed out in 0x000ef System.Net.HttpWebRequest:EndGetResponse (IAsyncResult asyncResult)in 0x0005f

Re: [Mono-devel-list] Shadow copying

2005-06-02 Thread Gonzalo Paniagua Javier
On Thu, 2005-06-02 at 15:58 +0200, Kornl Pl wrote: From: Goodwin, Robert-P28209 I don't believe it does. I have an application that sets the shadow copy property when creating the a new AppDomain. But when I load the Assembly into the new AppDomain, and then try to update it on the file

[Mono-devel-list] [PATCH] Trace at will

2005-06-04 Thread Gonzalo Paniagua Javier
Hi there. The attached patch allows the user to enable/disable tracing in the runtime at will by using SIGUSR2. Running mono like: mono --trace=disabled test.exe makes trace be off on start up and sending a SIGUSR2 to the process will toggle the trace state. Ok to commit this? (+

Re: [Mono-devel-list] HttpSoapWebServiceHandler.SerializeResponse closes the HttpResponse

2005-06-05 Thread Gonzalo Paniagua Javier
On Sun, 2005-06-05 at 17:12 +0300, Konstantin Triger wrote: Hi Lluis, The HttpSoapWebServiceHandler.SerializeResponse currently closes the response when finished. What makes the keep-alive to not work and actually a new socket is opened for each request. Is this done on purpose? I

Re: [Mono-devel-list] HttpSoapWebServiceHandler.SerializeResponse closes the HttpResponse

2005-06-05 Thread Gonzalo Paniagua Javier
On Sun, 2005-06-05 at 20:30 +0300, Konstantin Triger wrote: How closing the connection may help when only a part of the data arrived? Regards, Konstantin Triger Gonzalo Paniagua Javier wrote: On Sun, 2005-06-05 at 17:12 +0300, Konstantin Triger wrote: Hi Lluis

[Mono-devel-list] Re: [Mono-patches] r45441 - trunk/mcs/class/System.Web/System.Web

2005-06-05 Thread Gonzalo Paniagua Javier
On Sun, 2005-06-05 at 15:42 -0400, Kornl Pl wrote: Author: kornelpal Date: 2005-06-05 15:42:45 -0400 (Sun, 05 Jun 2005) New Revision: 45441 Modified: trunk/mcs/class/System.Web/System.Web/ChangeLog trunk/mcs/class/System.Web/System.Web/HttpWriter.cs Next time you want to make a

Re: [Mono-devel-list] System.Web/System.Web - patch (code synchronization between Mono and Mainsoft)

2005-06-06 Thread Gonzalo Paniagua Javier
On Mon, 2005-06-06 at 18:17 +0300, Svetlana Zholkovsky wrote: Hello All! Attached diff is related to Mainsoft's effort to synchronize code base between Mono and Mainsoft in System.Web assembly. As a first stage we are providing only J2EE/JVM related directives and changes. The original code

[Mono-devel-list] MONO_TRACE

2005-06-07 Thread Gonzalo Paniagua Javier
Hi there. I just realized that MONO_TRACE environment variable was being used by both the runtime and the System.Diagnostics.DefaultTraceListener. From r45591 on, DefaultTraceListener uses MONO_TRACE_LISTENER and MONO_TRACE is for runtime level call trace. -Gonzalo

Re: [Mono-devel-list] System.Web/System.Web - patch (code synchronization between Mono and Mainsoft)

2005-06-09 Thread Gonzalo Paniagua Javier
On Wed, 2005-06-08 at 13:11 +0300, Ilya Kharmatsky wrote: Hi, All! Please review updated version of patch. The patch is fine. As long as the new code is inside TARGET_JVM, feel free to commit all the patches you want. -Gonzalo ___

Re: [Mono-devel-list] System.Web/System.Web.Mail - patch (code synchronization between Mono and Mainsoft)

2005-06-09 Thread Gonzalo Paniagua Javier
On Fri, 2005-06-10 at 00:31 +0300, Ilya Kharmatsky wrote: In this case there is no appropriate throw. May be I'm wrong, but in .Net code there is no exception in this method. Commit, commit. I'm fine with all these patches that are for synchronizing mainsoft and mono libraries, as the new code

Re: [Mono-devel-list] [PATCH] StackTraces - remove some localization

2005-06-10 Thread Gonzalo Paniagua Javier
On Fri, 2005-06-10 at 15:47 +0200, Kornl Pl wrote: Hi, First of all .NET Framework does not localize these stack trace outputs. Furthermore Exception.StackTrace is used by the runtime to print stack trace when there is an error. As the localization framework (Locale, ResourceManager,

Re: [Mono-devel-list] System.Diagnostic.Process and /dev/tty

2005-06-12 Thread Gonzalo Paniagua Javier
On Sat, 2005-06-11 at 17:06 -0500, Robert J. Hansen wrote: I'm attempting to write a simple interface between C# and the GNU Privacy Guard, but I'm running into a problem. Namely, whenever I set processObject.RedirectStandardInput to true, GnuPG will die screaming because it can't access

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

2005-06-15 Thread Gonzalo Paniagua Javier
On Wed, 2005-06-15 at 17:03 +0300, RafaelMizrahi wrote: Hi Gonzalo, * We are doing some last cleanups on the web test suite and the tests base classes, I hope to send it (along with 479 tests! ;) for your review in few days. * The same harness is used for two scenarios: * Generating

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

2005-06-19 Thread Gonzalo Paniagua Javier
--- Test/System.DirectoryServices/ChangeLog (revision 45938) +++ Test/System.DirectoryServices/ChangeLog (working copy) @@ -1,3 +1,10 @@ +2005-06-19 Boris Kirzner [EMAIL PROTECTED] + * DirectoryServicesSearchResultTest.cs: since MS works only with LDAP while RFC2255 states ldap, use

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] Contributing Mainsoft System.Web test suite

2005-06-21 Thread Gonzalo Paniagua Javier
On Tue, 2005-06-21 at 10:14 +0300, RafaelMizrahi wrote: Hi gonzalo, I have set an FTP account for mono ftp :ftp.mainsoft.co.il user :mono password :'I have disclosed with you' You can share this FTP account with more mono hackers, and use this ftp for other large

Re: [Mono-devel-list] Syslog support

2005-06-22 Thread Gonzalo Paniagua Javier
On Wed, 2005-06-22 at 19:35 +0400, Vorobiev Maksim wrote: Good day. Is there are any possibility to work with syslog daemon from Mono without developing additional unmanaged code? I cann't find support for syslog in any Mono namaspaces. Does it exists?

Re: [Mono-devel-list] Character encoding problem

2005-06-23 Thread Gonzalo Paniagua Javier
On Thu, 2005-06-23 at 13:06 +0200, Hubert FONGARNAND wrote: I have an issue with accentued characters encoding (in french) in APS.NET I've a little VS 2003 Project attached ... With MS.NET the result is : Label Dynamique : accent aigu : é accent grâve è Statique: Accents : éèê Label HTML

Re: [Mono-devel-list] Performance regression with XSP/Mono 1.1.8

2005-07-03 Thread Gonzalo Paniagua Javier
On Fri, 2005-07-01 at 16:38 +0200, Luca wrote: Hello, I was doing some test on mono+XSP with web services. I was using the packages from debian/unstable (on the server): [...] I noticed that client performance was poor

Re: [Mono-devel-list] session_end Event (global.asax)

2005-07-23 Thread Gonzalo Paniagua Javier
On Fri, 2005-07-22 at 16:14 -0400, Miguel de Icaza wrote: 2. I cannot copy a dll into the bin-directory while XSP is running (i.e. hot deployment does not work). Even on Linux I get a assertion failure in loader.c Yes, this is because we currently do not implement a mechanism in

Re: [Mono-devel-list] FormsAuthentication [was: session_end Event (global.asax)]

2005-07-25 Thread Gonzalo Paniagua Javier
On Sat, 2005-07-23 at 10:16 +0200, Bernhard Herzog wrote: //if (protection == FormsProtectionEnum.None) return GetHexString (allTicket.ToString ()); //TODO: encrypt and validate Validation and encryption of those cookies is in svn HEAD now. Thanks for the reminder. -Gonzalo

Re: [Mono-devel-list] Net 1.1 Accessibility patch for System.Web

2005-07-26 Thread Gonzalo Paniagua Javier
On Tue, 2005-07-26 at 12:27 +0300, Eyal Alaluf wrote: Hi, Gonzalo everyone. Attached is a patch for enabling accessibility features in System.Web. Most of the features were implemented in Mono under the NET_2_0 profile but are actually part of the .Net framework 1.1 (some maybe in a

Re: [Mono-devel-list] Mod_mono / XSP compiled from scratch latest

2005-08-01 Thread Gonzalo Paniagua Javier
On Thu, 2005-07-28 at 18:09 +0200, Colt D. Majkrzak wrote: I just downloaded all of mono/xsp/mod_mono to upgrade to the latest on our Cpanel server, removing the cpanel outdated crap for mono. I recompiled everything exactly how each describes but I’m getting a 503 Service temporarily

[Mono-dev] Re: [Mono-devel-list] USE_MMAP speed/time tradeoff

2005-08-09 Thread Gonzalo Paniagua Javier
On Sun, 2005-08-07 at 00:14 +0200, Michal Moskal wrote: Also, Gonzalo was trying to work on the large file upload setup, which has better solutions (buffering to files, like is done in Whidbey). large file upload? I don't get it. When POSTing anything big to a ASP.NET page or web

Re: [Mono-dev] System.ComponentModel.PropertyDescriptor does not show attributes on an overridden property

2005-08-18 Thread Gonzalo Paniagua Javier
On Thu, 2005-08-11 at 13:50 +0100, Michael Hutchinson wrote: Hello, I have found a bug where the Attributes collection provided by System.ComponentModel.PropertyDescriptor does not show attributes on an overridden property. This is now http://bugzilla.ximian.com/show_bug.cgi?id=75846

Re: [Mono-dev] [PATCH] Default value fixes for WebControl, + UnitConverter infinite loop fix

2005-08-22 Thread Gonzalo Paniagua Javier
On Fri, 2005-08-19 at 15:08 +0100, Michael Hutchinson wrote: Some corrected default values for the properties of System.Web.UI.WebControls.WebControl. There's also a fix for a potential infinite loop in UnitConverter that occurs when converting to/from non-string types. Could someone review

Re: [Mono-dev] ThreadAbortException during compilation path

2005-08-22 Thread Gonzalo Paniagua Javier
On Tue, 2005-08-16 at 20:04 +0400, Vorobiev Maksim wrote: Vorobiev Maksim Your patch is in svn HEAD now. Thanks. -Gonzalo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Patch for compiling System.Wen/httpApplicationFactory.cs under TARGET_J2EE

2005-08-30 Thread Gonzalo Paniagua Javier
On Mon, 2005-08-29 at 13:25 +0300, Eyal Alaluf wrote: Hi, all. The attached diff is a patch compiling for System.Web/HttpApplicationFactory.cs under the TARGET_J2EE (Grasshoper) configuration. This is ok to check in. -Gonzalo ___

Re: [Mono-dev] Patch for compiling System.Wen/httpApplicationFactory.cs under TARGET_J2EE

2005-09-01 Thread Gonzalo Paniagua Javier
On Mon, 2005-08-29 at 13:25 +0300, Eyal Alaluf wrote: Hi, all. The attached diff is a patch compiling for System.Web/HttpApplicationFactory.cs under the TARGET_J2EE (Grasshoper) configuration. This is ok to check in. -gonzalo ___

Re: [Mono-dev] ThreadAbortException during compilation path

2005-09-01 Thread Gonzalo Paniagua Javier
On Thu, 2005-08-25 at 11:08 -0400, Miguel de Icaza wrote: Hello, We have encounted an issue with CSharpCodeCompiller class. Then there is a termination of thread, that startups compilation (and waits for ExitCode), it gots ThreadAbortException and goes to finally block. But the

Re: [Mono-dev] header have been already sent ?

2005-09-06 Thread Gonzalo Paniagua Javier
On Tue, 2005-09-06 at 20:59 -0400, Miguel de Icaza wrote: Hello, 4. global.asax, session.aspx: This is something I hoped that it would be fixed by a new application pipeline design, but it has not changed. It's important for my application:

Re: [Mono-dev] header have been already sent ?

2005-09-07 Thread Gonzalo Paniagua Javier
On Wed, 2005-09-07 at 09:02 +0200, Bernhard Herzog wrote: Thank you! I verified the 4 bugs and all are fixed. I did only a single user test, I will do a stress test later. Here is a new bug: 1. login2.aspx, login.ascx: Entering a name field worked in login.aspx, but when putting the form

Re: [Mono-dev] System.NotImplementedException in System.Web

2005-09-08 Thread Gonzalo Paniagua Javier
On Wed, 2005-09-07 at 19:01 -0700, Joe Audette wrote: Hi All, I'm using r49671 and I'm getting this error: System.NotImplementedException: Use the IStateManager This is fixed in r49714. Thanks. -Gonzalo ___ Mono-devel-list mailing list

Re: [Mono-dev] System.Web regressions

2005-09-08 Thread Gonzalo Paniagua Javier
On Thu, 2005-09-08 at 21:57 +0200, Juraj Skripsky wrote: Hello, While testing one of our bigger web applications on the partly rewritten System.Web, I ran across two regressions: - global.asax: Session_Start and Session_End is never called Session_Start wasn't being invoked. That's fixed

Re: [Mono-dev] header have been already sent ?

2005-09-08 Thread Gonzalo Paniagua Javier
On Wed, 2005-09-07 at 23:49 +0200, Bernhard Herzog wrote: The login bug is fixed. Chris is taking care of the validation summary not being shown when the 'name' field is empty. The validation summary fix should be in as well. Yes, that does work. I also verified the problem with the

Re: [Mono-dev] System.Web regressions: RadioButtonList not working

2005-09-09 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-09 at 09:34 +0200, Bernhard Herzog wrote: Hello, SelectedValue (setter and getter) is not working in RadioButtonList. See attached test case. Fixed in svn HEAD. Thanks. -Gonzalo ___ Mono-devel-list mailing list

Re: Fw: [Mono-dev] header have been already sent ?

2005-09-09 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-09 at 11:47 +0200, Bernhard Herzog wrote: I think I know now why I get duplicate Response.Write and Console.WriteLine outputs: It is because of the following line in the web.config: trace enabled=true requestLimit=40 pageOutput=false traceMode=SortByTime/ Source code

Re: [Mono-dev] System.InvalidCastException in System.Web

2005-09-09 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-09 at 19:14 -0700, Joe Audette wrote: Hi, I'm using r49842 and now when I try to login to my demo site at http://demo.mojoportal.com I get: System.InvalidCastException: Cannot cast from source type to destination type. I've uploaded a System.Web.dll to

Re: [Mono-dev] A Bug in mono-1.1.9

2005-09-10 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-11 at 01:51 +0800, David wrote: Afer I update my mono to mono-1.1.9, I found a bug in my Asp.Net Web. Sample like this: .aspx file: input runat=server id=reply onserverclick=OnButtonClick vaule=Reply .aspx.cs file protected void OnButtonClick(object sender, System.EventArgs

Re: [Mono-dev] A Bug in mono-1.1.9

2005-09-19 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-11 at 23:38 +0800, David wrote: [...] input runat=server id=reply type=Button!-- instead of Submit-- onserverclick=OnButtonClick value=Reply This is now fixed in svn. Thanks. -Gonzalo ___ Mono-devel-list mailing list

Re: [Mono-dev] mono-services, possible bug

2005-09-23 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-23 at 12:52 +0200, Johannes Rauber wrote: Hi, i wrote a little udp-server, which recieves udp packets and logs them into a file. I implemented this server into a .net Service Project and it runs fine after installing on any windows machine i tested. When i start it on

Re: [Mono-dev] Revised mod_mono vhost clash patch

2005-09-23 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-23 at 09:36 -0400, Joshua Tauberer wrote: Gonzalo, As I posted last Saturday, with virtual hosts and default aliases, each vhost's default mod-mono-server would be tied to the same unix socket file. In the attached patch (simplified from last time), the default name for

Re: [Mono-dev] [PATCH] System.Web.UI.ListControl Data Binding

2005-09-27 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-25 at 13:45 +0200, Robert Jordan wrote: Hi! The patch fixes a problem with data binding of simple collections. The bug can be reproduced with XSP's demo site 1.1/databind/databind-attribute.aspx The proper fix is now in svn HEAD. Thanks anyway. -Gonzalo

Re: [Mono-dev] [PATCH] System.Web.UI/ObjectTagBuilder.cs ID handling

2005-09-27 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-25 at 13:48 +0200, Robert Jordan wrote: Hi, The following patch fixes a bug in ObjectTagBuilder.cs. The bug can be reproduced with XSP's demo site 1.1/databind/databind-arraylist.aspx Fixed in svn. Thanks. -Gonzalo ___

RE: [Mono-dev] this program doesn't work on mono 1.1.9.1

2005-09-27 Thread Gonzalo Paniagua Javier
On Tue, 2005-09-27 at 11:37 +0200, Jose Pascual wrote: yes It's truem it does no retrieve any result on windows, but on mono retrieve error! this example was to debug mono, ;-) I didn't get any error on mono. Just the 0 retrieved results message. -Gonzalo

Re: [Mono-dev] Mono 1.1.9 broken DataGrid

2005-09-28 Thread Gonzalo Paniagua Javier
On Wed, 2005-09-14 at 00:50 +0300, Slava Petrenko wrote: Hi all, It seems to me mono 1.1.9 has a broken support for DataGrid's tag asp:BoundColumn. Now property Visible of that tag doesn't affect on column's visibility, it stays visible independently from a value of Visible property.

RE: [Mono-dev] Unable to create unix domain socket with mod-mono underapache2 fc4

2005-10-02 Thread Gonzalo Paniagua Javier
On Fri, 2005-09-30 at 13:51 -0400, Jeff Sheldon wrote: Hi, I'm having the exact same problem. Tried removing the .wapi folder but doesn't help either. Been searching all over the place, but can't find anything to fix it. If you guys send me the output of 'apachectl -l' (or apache2ctl -l)

Re: [Mono-dev] Win32 build broken

2005-10-06 Thread Gonzalo Paniagua Javier
On Tue, 2005-10-04 at 15:22 +0200, Kornél Pál wrote: Hi, Thanks for the fix. ETXTBSY seems to be a POSIX error code while all the other error codes are Win32 error codes so I think this is an error in the code itself rather than a missed #if !PLATFORM_WIN32. According to the documentation

Re: [Mono-dev] (Nevermind) Asp.net thread abort issue

2005-10-09 Thread Gonzalo Paniagua Javier
On Sun, 2005-10-09 at 08:04 -0400, Joshua Tauberer wrote: Gonzalo Paniagua Javier wrote: Anyway, if you ever decide to catch ThreadAbortException anywhere in the asp.net pipeline, bear in mind that it's used also when the configured timeout is reached. The timeout for what

[Mono-dev] Re: DataGrid Control : doPostBack script not emited

2005-10-12 Thread Gonzalo Paniagua Javier
On Wed, 2005-10-12 at 18:08 -0400, Yogendra Thakur wrote: Hi Gonzalo, __doPostBackScript Script is not rendered in page, if no comand Column is Visible. Microsoft implementation emits this script, even if Command Column is hidden. Many developer use __doPostBack function call and

Re: [Mono-dev] Bug 73055 (Request.FilePath not updated by RewritePath)

2005-10-14 Thread Gonzalo Paniagua Javier
On Fri, 2005-10-14 at 09:28 -0400, Dave Purrington wrote: I'm running mono version 1.1.9.2_1 and am seeing the behavior exhibited in bug 73055. Looking at the bugzilla entry, it appears to be fixed. Being new to mono, it's not clear to me whether I should expect the fix for this bug to be

Re: [Mono-dev] [PATCH] patch for TermInfoDriver.cs

2005-10-17 Thread Gonzalo Paniagua Javier
On Sun, 2005-10-16 at 10:22 +0200, Michal Moskal wrote: A simple patch attached, otherwise trying to just assign to *Color property throws NullRef. 2005-10-16 Michal Moskal [EMAIL PROTECTED] * TermInfoDriver.cs: Call Init () in Background/ForegroundColor. Please, commit.

Re: [Mono-dev] BIG ASP.NET BUG : SegFault when sending a Response of a size 120Ko

2005-10-17 Thread Gonzalo Paniagua Javier
On Mon, 2005-10-17 at 11:08 +0200, Hubert FONGARNAND wrote: http://bugzilla.ximian.com/show_bug.cgi?id=76460 Just in case you think 3 emails in 7 minutes are not enough, I'm replying here to acknowledge that I'm working on fixing this issue. -Gonzalo

Re: [Mono-dev] BIG ASP.NET BUG : SegFault when sending a Response of a size 120Ko

2005-10-17 Thread Gonzalo Paniagua Javier
On Mon, 2005-10-17 at 20:33 -0400, Gonzalo Paniagua Javier wrote: On Mon, 2005-10-17 at 11:08 +0200, Hubert FONGARNAND wrote: http://bugzilla.ximian.com/show_bug.cgi?id=76460 It's fixed now. For those of you seeing weird libc errors and xsp dying, please try http://primates.ximian.com

[Mono-dev] Re: [Mono-patches] r52237 - trunk/mcs/class/System/System.Collections.Specialized

2005-10-26 Thread Gonzalo Paniagua Javier
On Wed, 2005-10-26 at 06:47 -0400, Svetlana Zholkovsky ([EMAIL PROTECTED]) wrote: + private IDictionary inner + { + get + { + if (list != null) + return list; +

Re: [Mono-dev] XSP crash and patch

2005-10-29 Thread Gonzalo Paniagua Javier
Your patch is in svn now. Thanks. -Gonzalo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] patch for System.CodeDom.Compiler.CodeCompiler

2005-11-02 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-02 at 11:28 -0500, Sebastien Pouliot wrote: Hello everyone, Here's a patch to fix CodeCompiler so it use Executor instead of directly using Process. I need this because Executor and Process have (similar but) different security requirements. However there are very few unit

Re: [Mono-dev] XSP did not compile for me

2005-11-03 Thread Gonzalo Paniagua Javier
On Thu, 2005-11-03 at 01:02 +0100, Bernhard wrote: Hi! I got an error compiling XSP from SVN for some days now. In order to compile XSP I had to change the Makefile in src from xsp_sources = server.cs to xsp_sources = server.cs security.cs Is this something that should be

Re: [Mono-dev] XSP did not compile for me

2005-11-03 Thread Gonzalo Paniagua Javier
On Thu, 2005-11-03 at 13:13 -0500, Sebastien Pouliot wrote: On Thu, 2005-11-03 at 12:49 -0500, Gonzalo Paniagua Javier wrote: On Thu, 2005-11-03 at 01:02 +0100, Bernhard wrote: Hi! I got an error compiling XSP from SVN for some days now. In order to compile XSP I had to change

Re: [Mono-dev] Bugzilla bug report #76534

2005-11-04 Thread Gonzalo Paniagua Javier
On Fri, 2005-11-04 at 20:48 +0100, Marek Habersack wrote: Hello everybody, I'm not sure what I might have done wrong, but for some reason the bug http://bugzilla.ximian.com/show_bug.cgi?id=76534 doesn't show up in any queries performed on the bugzilla database from the mono-project.com

Re: [Mono-dev] Mono.WebServer

2005-11-07 Thread Gonzalo Paniagua Javier
On Mon, 2005-11-07 at 10:37 -0600, Jerry Haltom wrote: A project of mine has required the use of the Mono embedded web server. Kudos to those who made this, it rocks. However, from within the ASP.Net code running in the embedded web server, I need to be able to call a number of methods

Re: [Mono-dev] ASP.NET Server.Transfer

2005-11-07 Thread Gonzalo Paniagua Javier
On Mon, 2005-11-07 at 14:22 -0200, Fabio Yasusi Yamamoto wrote: Hi Does anybony knows if Server.Transfer( page.asp, true ) work on mono? if i set the second argument to false it work The problem occur every time i try to use the parameter TRUE, and the destination page has a

Re: [Mono-dev] [PATCH] HttpRequest Content-Type and Content-Length fixes

2005-11-08 Thread Gonzalo Paniagua Javier
On Mon, 2005-11-07 at 17:03 -0800, Jason Diamond wrote: Hi. The attached patch fixes two small bugs in HttpRequest related to POSTing application/x-www-form-urlencoded data. The actual fixes involved modifying just two lines in HttpRequest.cs. The bulk of the patch is two new test

Re: [Mono-dev] [PATCH] HttpRequest Content-Type and Content-Length fixes

2005-11-08 Thread Gonzalo Paniagua Javier
On Tue, 2005-11-08 at 09:42 -0800, Jason Diamond wrote: On 11/8/05, Gonzalo Paniagua Javier [EMAIL PROTECTED] wrote: The Math.Max (...) line is not needed as it is inside a 'if (content_length 0)' and total is going to be either 0 or buffer.Length. Try running the test without

Re: [Mono-dev] [PATCH] mod_mono apache 1.3 compatibility broken

2005-11-09 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-09 at 18:28 +0100, Robert Jordan wrote: Hi, Apache 1.3 doesn't know request_rec.canonical_filename. Request_rec.filename seems to do the job on Apache 2.0 as well, so I didn't make it conditional. The patch is in svn now. Thanks. -Gonzalo

Re: [Mono-dev] Mono 1.1.10 + SLES == HTTP 503 error

2005-11-09 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-09 at 15:45 +0200, Christopher Bergström wrote: I just upgraded tried to upgrade to 1.1.10 and I might need some help.. Currently getting a 503 error on all my sites.. Details #1 I was using rug to install the update which didn't warn me about this new feature** and

Re: [Mono-dev] latest mono completely broken for ASP.NET on Suse as far as I can tell

2005-11-11 Thread Gonzalo Paniagua Javier
On Fri, 2005-11-11 at 09:32 -0800, Joe Audette wrote: Thanks Gonzalo! Dean Brettle also suggested I try launching it with just xsp from the command line to see if it gives any more error info. I will try that after I get home from work as well. I'm using the same configuration for

Re: [Mono-dev] Mono 1.1.10 Issues with XSP and Radio Button.

2005-11-11 Thread Gonzalo Paniagua Javier
On Fri, 2005-11-11 at 18:10 -0500, Yogendra Thakur wrote: Hi, I am running Mono 1.1.10 on Fedora Core 3 machine. I observed following issues, 1. Following message is thrown lot of time on Screen while accessing web application.. ** (/opt/mono-1.1.10/lib/xsp/1.0/xsp.exe:11150): WARNING

Re: [Mono-dev] Regression with custom web controls

2005-11-12 Thread Gonzalo Paniagua Javier
On Sat, 2005-11-12 at 13:19 +0200, Christopher Bergström wrote: System.NotImplementedException: The requested feature is not implemented. in 0x005af System.Data.SqlClient.SqlConnection:SetProperties (System.String name, System.String value) This seems to be a regression in System.Data.

Re: [Mono-dev] [PATCH] mod_mono: startup problems with Apache 1.3

2005-11-12 Thread Gonzalo Paniagua Javier
On Sat, 2005-11-12 at 15:34 +0100, Robert Jordan wrote: Hi, The attached patch fixes the problem by not starting xsp from apache's child_init handler. It's now started on demand during the first request. I'm not sure whether this is desired, because it may lead to

Re: [Mono-dev] Regression with custom web controls

2005-11-12 Thread Gonzalo Paniagua Javier
Are you using 'PERSISTSECURITYINFO' or 'PERSIST SECURITY INFO'? If so, a fixed System.Data.dll is available at http://primates.ximian.com/~gonzalo/System.Data.dll.gz. Download it, gunzip and 'gacutil -i System.Data.dll'. -Gonzalo ___ Mono-devel-list

Re: [Mono-dev] [PATCH] mod_mono: startup problems with Apache 1.3

2005-11-14 Thread Gonzalo Paniagua Javier
On Sun, 2005-11-13 at 17:12 -0500, Joshua Tauberer wrote: Better than what I was saying about reading pids from files, you could use APR's cross-process mutexes: http://docx.webperf.org/group__apr__proc__mutex.html Just put a lock around the forking+sleeping-a-bit. I think that'll cut

Re: [Mono-dev] Problem with RadioButtonList

2005-11-14 Thread Gonzalo Paniagua Javier
On Mon, 2005-11-14 at 10:17 +0100, Johann BLAIS wrote: Hi all, I've tried upgrading to 1.1.10. Nice work you've done ! I have a problem, my web application crashes when trying to use selectedValue property of a radiobuttonlist. It returns an empty string. For example : asp:RadioButtonList

Re: [Mono-dev] xsp error

2005-11-15 Thread Gonzalo Paniagua Javier
On Tue, 2005-11-15 at 10:14 -0600, Carlos Solorzano wrote: I got this wierd error on XSP after it had been running for a while. The exception was much bigger but for some reason my xterm didn't copy anymore than this. Internal error: OutputPage threw an exception System.Exception: Internal

Re: [Mono-dev] XSP debugging

2005-11-17 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-16 at 23:43 +0100, Marek Habersack wrote: On Wed, Nov 16, 2005 at 11:00:05AM -0600, Carlos Solorzano scribbled: Whats the easiest way to do some debugging of XSP, is there a way to turn on logs for XSP? personally I use log4net (catches also Console.Write/WriteLine) with

Re: [Mono-dev] XSP Crash on binding empty dataview to MONO

2005-11-17 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-16 at 18:16 -0500, Yogendra Thakur wrote: Please see following bug. http://bugzilla.ximian.com/show_bug.cgi?id=76732 If DataGrid control is binded with EmptyDataView and rebinded again it crashes XSP. See attached crash message and test page. Thanks. I'll take care of

Re: [Mono-dev] Problem in HttpResponseStream

2005-11-17 Thread Gonzalo Paniagua Javier
On Wed, 2005-11-16 at 17:14 +0100, Geir Johan Bergum wrote: In System.Web/HttpResponseStream the ApplyFilter method does'nt flush the filter before closeing it. In 1.1.7 and .NET Framework the filter will be flushed at final flush. Would you please send a simple test case that I can use

Re: [Mono-dev] [PATCH] Read System.Net proxy server address from environment

2005-11-18 Thread Gonzalo Paniagua Javier
On Fri, 2005-11-18 at 09:45 +, Michael Hutchinson wrote: Is it okay to commit now? I don't have a direct internet connection here, so if someone could double-check that it definately works without a proxy that would be nice. Looks like this slipped through the net. Can someone review

  1   2   3   4   5   >