Re: [Mono-dev] System.Collections.Specialized.NameValueCollection patch

2007-04-22 Thread Ilya Kharmatsky
[] etc. Eyal. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ilya Kharmatsky Sent: 17 April 2007 12:29 To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] System.Collections.Specialized.NameValueCollection patch Hi, Please approve attached patch which

[Mono-dev] System.Collections.Specialized.NameValueCollection patch

2007-04-17 Thread Ilya Kharmatsky
Hi, Please approve attached patch which fix proper exception handling in CopyTo method and constructors which get another instance of NameValueCollection. The patch contains also the respective test cases. Ilya. Index: Test/System.Collections.Specialized/NameValueCollectionTest.cs

[Mono-dev] Problems with MonoTests.System.Net.FileWebRequestTest

2007-02-01 Thread Ilya Kharmatsky
Hi, I'm running System tests (net_2_0 profile) on Cygwin/Windows-XP. I've noticed that since the patch from Gert Driesen on 2007-01-28, the FileWebRequestTest produces a lot of errors (almost all sub tests in this file) and this due to the exception in file deletion. Actually same happens in

[Mono-dev] BaseCompareValidatorTest - fix

2007-01-09 Thread Ilya Kharmatsky
@@ +2007-01-09 Ilya Kharmatsky ilyak-at-mainsoft.com + * BaseCompareValidator + * CompareValidator + Fixed the Invariant Calture issues. + 2007-01-08 Vladimir Krasnov [EMAIL PROTECTED] * SqlDataSourceView.cs: fixed parameters init for ExecuteUpdate Index: System.Web

Re: [Mono-dev] Reading and writing excel files

2006-02-01 Thread Ilya Kharmatsky
You can also use this Java library : http://www.andykhan.com/jexcelapi/ Jonathan Pryor wrote: On Tue, 2006-01-31 at 10:24 +0100, "ZABALA CALVO, IÑAKI" wrote: I am trying to read and write Excel .xls files I have tried it with COM: Mono does not currently support COM

Re: [Mono-devel-list] Re: FW: Soap Serialization interop

2005-06-21 Thread Ilya Kharmatsky
Hi, Hubert! I think its not related to bug 75323 - since in Web Services there is no use of Soap Serialization - the framework uses Xml Serialization... Ilya Kharmatsky. Hubert FONGARNAND wrote: It may refer to the bug #75323 ? Le Mardi 21 Juin 2005 16:32, Rafael Teixeira a crit

Re: [Mono-devel-list] Re: FW: Soap Serialization interop

2005-06-21 Thread Ilya Kharmatsky
Hi, Robert! Please post your tests - we are currently working on Soap Serialization test suite, so your tests could help us. Ilya Kharmatsky. Robert Jordan wrote: Rafael, Robert, We fix things in the interop/serialization area as needed and possible when enough

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

2005-06-13 Thread Ilya Kharmatsky
stantin Triger wrote: Agreed, but anyway, throwing SocketException would be better than UnknownHostException /jdk142/api/java/net/UnknownHostException.html. You can also suppress the exception and pass "localhost" instead. Regards, Konstantin Triger Ilya Kharmats

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

2005-06-11 Thread Ilya Kharmatsky
Original Message Subject: Re: [Mono-devel-list] System.Web/System.Web.UI - patch (code synchronization between Mono and Mainsoft) Date: Sat, 11 Jun 2005 15:35:32 +0300 From: Ilya Kharmatsky [EMAIL PROTECTED

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

2005-06-10 Thread Ilya Kharmatsky
able/value-comparable objects... Just guessing... On 6/9/05, Ben Maurer [EMAIL PROTECTED] wrote: On Thu, 2005-06-09 at 19:05 -0400, Gonzalo Paniagua Javier wrote: On Wed, 2005-06-08 at 14:11 +0300, Ilya Kharmatsky wrote: Please review the p

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

2005-06-10 Thread Ilya Kharmatsky
What if you split up such arrays. IE: struct X { int a; int b; int c; } X [] foo; Turns into: int foo_A []; int foo_B []; int foo_C []; It is complicated task in perspective of our conveter - if it will use you suggestion, it should remember the context of each foo_X array

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

2005-06-09 Thread Ilya Kharmatsky
I agree, good shot Ben! Attached updated patch. Thank you, Ilya. Ben Maurer wrote: On Wed, 2005-06-08 at 13:17 +0300, Ilya Kharmatsky wrote: InProc = 1, StateServer = 2, SQLServer = 3 +#if TARGET_J2EE + ,J2ee = 4 +#endif It's probably

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

2005-06-09 Thread Ilya Kharmatsky
Sorry I've sent the old diff - here is a new one - the value changed to '1024'. Ilya Kharmatsky wrote: I agree, good shot Ben! Attached updated patch. Thank you, Ilya. Ben Maurer wrote: On Wed, 2005-06-08 at 13:17 +0300, Ilya Kharmatsky wrote: InProc

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

2005-06-09 Thread Ilya Kharmatsky
h an appropriate try/catch/throw, otherwise a Java exception would be thrown to the user. Regards, Konstantin Triger Ilya Kharmatsky wrote: Please review the patch. Thanks, Ilya.

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

2005-06-08 Thread Ilya Kharmatsky
Hi, All! Please review updated version of patch. Thanks, Ilya. Gonzalo Paniagua Javier wrote: 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

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

2005-06-08 Thread Ilya Kharmatsky
Please review the patch. Thanks, Ilya. Index: ChangeLog === --- ChangeLog (revision 45568) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2005-06-08 Ilya Kharmatsky ilyak-at-mainsoft.com + +* SmtpMail.cs: Added

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

2005-06-08 Thread Ilya Kharmatsky
Please review changes. Thanks, Ilya. Index: ChangeLog === --- ChangeLog (revision 45568) +++ ChangeLog (working copy) @@ -1,3 +1,12 @@ +2005-06-08 Ilya Kharmatsky ilyak-at-mainsoft.com + +* SessionStateMode.cs: Added

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

2005-06-08 Thread Ilya Kharmatsky
(); } +#endif public bool HasChanged { Index: ChangeLog === --- ChangeLog (revision 45568) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2005-06-08 Ilya Kharmatsky ilyak-at-mainsoft.com

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

2005-06-08 Thread Ilya Kharmatsky
: Ilya Kharmatsky [EMAIL PROTECTED] To: Gonzalo Paniagua Javier [EMAIL PROTECTED] Please review the patch. Thanks, Ilya. Index: ChangeLog === --- ChangeLog (revision 45568) +++ ChangeLog

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

2005-06-08 Thread Ilya Kharmatsky
ChangeLog === --- ChangeLog (revision 45568) +++ ChangeLog (working copy) @@ -1,3 +1,13 @@ +2005-06-08 Ilya Kharmatsky ilyak-at-mainsoft.com + +* HtmlTextWriter.cs: Internal structs such as TagStackEntry, +TagInforamation, RenderStyle etc. changed in J2EE con