Re: [Mono-devel-list] Serialization/Deserialization question

2005-02-28 Thread Lluis Sanchez
On dl, 2005-02-28 at 14:19 +0100, Aleksandar Dezelin wrote: I have an object serialized in .NET and I wan't to deserialize it in Mono but I throws an exception saying that binary object cannot be found. I've tried to chop BinaryFormatter from latest svn code but it won't work properly under

[Mono-devel-list] BinaryReader/Writer fix for non little-endian platforms

2005-03-16 Thread Lluis Sanchez
(BitConverterLE.GetBytes(value), 0, 4); } byte [] stringBuffer; Index: ChangeLog === --- ChangeLog (revision 41899) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2005-03-16 Lluis Sanchez Gual [EMAIL PROTECTED] + + * BinaryReader.cs

Re: [Mono-devel-list] Remoting performance

2005-04-05 Thread Lluis Sanchez
On dt, 2005-04-05 at 08:31 +0100, Tim Day wrote: I've just been playing with the mono remoting stuff. Whether I use HttpChannel or TcpChannel I only seem to be able to make about 10 trivial (2 int parameters, bool return) calls per second between a client and server process on the same

Re: [Mono-devel-list] TARGET_JVM in XmlSerializer.cs

2005-04-06 Thread Lluis Sanchez
Shouldn't MAINSOFT_ONLY actually be TARGET_JVM? On dl, 2005-04-04 at 15:02 +0300, Andrew Skiba wrote: Lluis Sanchez wrote: Hi, The patch doesn't look correct since the method CheckGeneratedTypes is still being called, and will throw if TARGET_JVM is defined. On the other hand, if you

Re: [Mono-devel-list] TARGET_JVM in XmlSerializer.cs

2005-04-06 Thread Lluis Sanchez
On dc, 2005-04-06 at 12:24 +0300, Andrew Skiba wrote: Lluis Sanchez wrote: Shouldn't MAINSOFT_ONLY actually be TARGET_JVM? Sure. Except that, is patch OK? Yeah, it's fine. Andrew. ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-devel-list] Re: [Mono-patches] r42986 - trunk/mcs/class/System.XML/System.Xml.Serialization

2005-04-14 Thread Lluis Sanchez
On dj, 2005-04-14 at 12:26 +0300, Andrew Skiba wrote: Lluis Sanchez wrote: Hi, I did not aprove this patch, and I need to know why it is needed before aproving it (i.e. a test case). Lluis. Hi. On Sunday I posted a message with an explanation and the testcase to the dev

Re: [Mono-devel-list] Patch to mimic MS.Net remoting name mangling

2005-05-02 Thread Lluis Sanchez
This bug needs a more generic solution. Field names should be encoded using XmlConvert.EncodeLocalName, since there may be other characters in the name that are not valid in xml names. For inherited fields, the serialized name should be className+fieldName. The binary serializer already write

Re: [Mono-devel-list] The XML serializer apparently is buggy

2005-05-02 Thread Lluis Sanchez
Hi, On dt, 2005-05-03 at 01:11 +0200, Michael Rasmussen wrote: Hi all, I have discovered a strange bug in Mono. I have a number of webservices written in PHP and clients written in .NET and Mono. All clients in .NET works but none of the clients in Mono does - the result is always null.

Re: [Mono-devel-list] google adwords api with mono

2005-05-11 Thread Lluis Sanchez
On dt, 2005-05-10 at 19:32 -0600, Gonzalo Paniagua Javier wrote: On Tue, 2005-05-10 at 23:57 +0200, Chris Turchin wrote: Hi, On Tue, 2005-05-10 at 20:32 +0200, Sebastian Bhm wrote: mono:~# wsdl http://adwords.google.com/api/adwords/v2/CampaignService?wsdl Mono Web Services

[Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-17 Thread Lluis Sanchez
=== --- ChangeLog (revision 44628) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2005-05-17 Lluis Sanchez Gual [EMAIL PROTECTED] + + * reflection.c: Update the table_idx field of method builders after + saving the module, since it can change. This is a workaround for + bug

Re: [Mono-devel-list] SOAP Attachment

2005-06-01 Thread Lluis Sanchez
El dc 01 de 06 del 2005 a les 11:51 +0200, en/na Florent Guiliani va escriure: Hi all, I'm trying to deal with SOAP Attachment with mono (http://www.w3.org/TR/SOAP-attachments). I can see some class (MimePart, MimePartCollection) but they have no members. Is SOAP Attachment is

Re: [Mono-devel-list] [PATCH] System.Web.Service protocols

2005-06-06 Thread Lluis Sanchez
Hi, Feel free to commit. However, please split that 5 line if to make easier to understand what is it actually checking. And of course, the ChangeLog is missing. Thanks! Lluis. El dl 06 de 06 del 2005 a les 10:38 +0200, en/na Pl Kornl va escriure: Hi, NET Framework 1.1 supports protocols

Re: [Mono-devel-list] [PATCH] System.Web.Service protocols

2005-06-06 Thread Lluis Sanchez
Feel free to commit. However, please split that 5 line if to make easier to understand what is it actually checking. OK. And of course, the ChangeLog is missing. I never include ChangeLog in diffs but I commit it along with the patch. It's useful to have the ChangeLog together with

Re: [Mono-devel-list] [PATCH] HttpSoap and HttpSoap12 may be removed as well

2005-06-07 Thread Lluis Sanchez
El dl 06 de 06 del 2005 a les 15:27 +0200, en/na Kornl Pl va escriure: Hi, I think the modified lines can be excluded as well when the cofiguration disallows using these types. If doing this has some side effects please let me know. There shouldn't be any side effect other than generating

Re: [Mono-devel-list] Master Pages

2005-06-08 Thread Lluis Sanchez
Hi, All ASP.NET 2.0 features are still under development, so many things still don't work properly. For the concrete case of Master Pages, if you have a sample page that works on MS.NET but does not on Mono, please file a bug report in bugzilla.ximian.com, and attach all files that are needed to

[Mono-devel-list] New System.Configuration assembly

2005-06-14 Thread Lluis Sanchez
Hi, I just added a the new System.Configuration assembly to the build for the 2.0 profile. You'll need to do a clean rebuild since it has a cyclic dependency with System.dll. Lluis. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-devel-list] BIg Problem with webservices (client)

2005-06-17 Thread Lluis Sanchez
Can you please file a bug report in bugzilla.ximian.com for this? and please attach the code of the web service that fails (if possible) or the wsdl document? Thanks, Lluis. El dv 17 de 06 del 2005 a les 11:27 +0200, en/na Hubert FONGARNAND va escriure: I've a simple Web Application which make

Re: [Mono-devel-list] (GridView) ButtonField 's HeaderText attribute is set but not rendered.

2005-06-27 Thread Lluis Sanchez
This has been fixed in SVN. El dv 17 de 06 del 2005 a les 16:27 +0200, en/na Sébastien Macke va escriure: Hi, When using a GridView with a ButtonField column as below: asp:gridview id=MyGridView runat=server AutoGenerateColumns=false columns asp:ButtonField

RE: [Mono-devel-list] XSP2 VS 2005 Express

2005-06-29 Thread Lluis Sanchez
El dc 29 de 06 del 2005 a les 12:09 +1000, en/na Joshua McAdam va escriure: Hi Miguel, Thanks for your reply, is there any way i can get it to work if I modify the tags (I'm _really_ new to ASP.NET 2)? I had a look at the class library status and only used stuff that was listed as working /

Re: [Mono-devel-list] WebService instance is not disposed after a method invocation

2005-06-30 Thread Lluis Sanchez
Please, commit. Thanks! Lluis. El dj 30 de 06 del 2005 a les 15:35 +0300, en/na Konstantin Triger va escriure: Hello, The WebService instance is not disposed after a WebMethod invocation. In .Net it's called immediately. Attached a patch fixing that. Please approve commit. fitxer

Re: [Mono-devel-list] System.Runtime.Remoting Tests

2005-07-05 Thread Lluis Sanchez
El dt 05 de 07 del 2005 a les 16:40 -0700, en/na JD Conley va escriure: I was looking into Remoting a bit and was searching for the unit tests and how the multiple application domains or contexts were handled for testing. There was one set of tests under \mono\mcs\class\corlib\Test and

RE: [Mono-devel-list] System.Runtime.Remoting Tests

2005-07-05 Thread Lluis Sanchez
I'm looking in the latest release tarball and I can't seem to find any Test directory under System.Runtime.Remoting. In fact there is no System.Runtime.Remoting directly under mcs/class. The directory is indeed there. I assume you mean the one under corlib. There are some tests in

Re: [Mono-devel-list] access public fields via remoting

2005-07-14 Thread Lluis Sanchez
Hi, Can you please file a bug report in bugzilla.ximian.com and attach a simple test application we can use to reproduce the error? Thanks, Lluis. El dj 07 de 07 del 2005 a les 19:28 +0300, en/na Svetlana Zholkovsky va escriure: Sorry, my attachment is not arrived, The error is : **

Re: [Mono-devel-list] Problem with MS.NET and Mono with Remoting

2005-07-20 Thread Lluis Sanchez
El dc 20 de 07 del 2005 a les 15:49 +0200, en/na Hubert FONGARNAND va escriure: Le Mardi 19 Juillet 2005 08:56, Hubert FONGARNAND a écrit : Le Lundi 18 Juillet 2005 16:48, Hubert FONGARNAND a écrit : http://bugzilla.ximian.com/show_bug.cgi?id=75575 Does someone know if this type of bug

Re: [Mono-dev] Bug with XML Serialization

2005-08-18 Thread Lluis Sanchez
Can you please file a bug report in bugzilla.ximian.com, and attach a self contained test application that can be used to reproduce the problem? Thanks. El dj 18 de 08 del 2005 a les 17:43 +0200, en/na knocte va escriure: Hello, With VS.NET2003 I am able to serialize a class without errors,

Re: [Mono-dev] Mono runtime segfault

2005-08-23 Thread Lluis Sanchez
El dt 23 de 08 del 2005 a les 08:33 -0500, en/na David Carr va escriure: Feelite et at, Thanks for the help with my problem. Looks like I have a bit more learning to do... Should I file a bug report indicating that a StackOverflowException should be thrown in this situation? Please don't,

Re: [Mono-dev] Custom surrogates and serialization

2005-09-21 Thread Lluis Sanchez
El dv 02 de 09 del 2005 a les 11:49 -0400, en/na Chris Micacchi va escriure: I'm now working on some problems with Xml serialization, and this is where the bulk of the problems I'm getting have been. The first is that our software uses a custom serializer surrogate for

Re: [Mono-dev] Mono Webservices Bug

2005-10-03 Thread Lluis Sanchez
Hi, This is a known bug already fixed in SVN HEAD. El dv 30 de 09 del 2005 a les 18:53 -0700, en/na Ko Ko va escriure: Hi, I notice that when I run Webservice on Linux with Mono, I got some problem with Data return from web services. When I return simple data like string from web services

[Mono-dev] Re: Mono/.NET interoperability of System.Collections.Specialized

2005-10-10 Thread Lluis Sanchez
Our policy in this topic is explained in the Mono FAQ: http://www.mono-project.com/FAQ:_Technical#What_about_serialization_compatibility.3F_Can_I_serialize_an_object_in_Mono_and_deserialize_it_in_MS.NET_or_vice_versa.3F El dl 10 de 10 del 2005 a les 04:06 -0700, en/na Svetlana Zholkovsky va

Re: [Mono-dev] MonoDevelop debugger

2005-10-18 Thread Lluis Sanchez
The debugger is not currently supported in MD. It will be supported in the next MD release. El dt 18 de 10 del 2005 a les 18:45 +0200, en/na [EMAIL PROTECTED] va escriure: Hi, Is monodevelop known to work with integrated debugging in 1.1.9.2??? I mean after recompiling with

Re: [Mono-dev] Patch for System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs

2005-10-27 Thread Lluis Sanchez
El mié, 26-10-2005 a las 07:45 -0700, Svetlana Zholkovsky escribió: Hi all, I encountered two problems with the SoapTypeMapper class: - First, in the deserialization of the MethodSignature element for the overloaded method without parameters. In this case the xml element in the stream is

[Mono-dev] Re: Patch for some classes from System.Runtime.Remoting.Channels.Http namespace

2005-10-31 Thread Lluis Sanchez
Comments inline Hi all, I fixed the HttpRemotingHandlerFactory, HttpRemotingHandler, HttpServerChannel classes to work properly with a WebServer hosting. The HttpRemotingHandlerFactory should first configure the remoting infrastructure from the Web.config. In case of appropriate Http

[Mono-dev] Re: Patch with TARGET_JVM changes for some classes from System.Runtime.Remoting

2005-10-31 Thread Lluis Sanchez
Hi all, I changed some code under TARGET_JVM condition. Can I commit this changes? The patches look fine. The only change I don't understand is this: Index: SdlChannelSink.cs === --- SdlChannelSink.cs (revision 52268)

Re: [Mono-dev] Patch for problem with RemotingConfiguration.Configure, when the configuration file contains custom providers with child elements

2005-10-31 Thread Lluis Sanchez
Please commit, Thanks! Lluis. El lun, 31-10-2005 a las 04:10 -0800, Svetlana Zholkovsky escribió: Hi all, I fixed a problem with RemotingConfiguration.Configure, when the configuration file contains custom providers with child elements: serverProviders

[Mono-dev] Re: Patch for System.Runtime.Remoting.ServerIdentity

2005-11-02 Thread Lluis Sanchez
El lun, 31-10-2005 a las 04:48 -0800, Svetlana Zholkovsky escribió: Index: ServerIdentity.cs === --- ServerIdentity.cs (revision 51552) +++ ServerIdentity.cs (working copy) @@ -103,6 +103,8 @@ public void

Re: [Mono-dev] [PATCH] Add missing NET_2_0 remoting interfaces

2005-11-05 Thread Lluis Sanchez
Hi, The patch adds 2 missing remoting related interfaces to corlib and S.R.Remoting. May I commit? Please commit. BTW, is someone else working on NET_2_0 remoting API changes? I'm investigating the new security and encryption stuff. Nobody is working in 2.0 remoting stuff, so feel

[Mono-dev] Re: [MonoDevelop] MonoDevelop crashes under Mono 1.1.10 on FC3

2005-11-14 Thread Lluis Sanchez
I think this is fixed in SVN. El vie, 11-11-2005 a las 16:11 -0500, Dean Brettle escribió: Hi all, Yesterday MonoDevelop was working fine. Last night, I upgraded my FC3 system from 1.1.9.2 to 1.1.10. Now MonoDevelop crashes on startup. See below for stacktrace. In case it matters, I'm

Re: [Mono-dev] Deserialization and members order by reflection

2005-11-15 Thread Lluis Sanchez
Hi, Deserialization should not depend on order of members. If something fails, please file a bug report with a test case. The order we are currently using mimics the order used by MS.NET, and this should not change. Thanks! Lluis. El mar, 15-11-2005 a las 10:03 -0800, Vladimir Krasnov escribió:

Re: [Mono-dev] monodevelop with debugger can't start

2005-11-17 Thread Lluis Sanchez
The debugger is not currently supported in MD. El mié, 16-11-2005 a las 20:44 -0800, zhu shi song escribió: Dear lists, I got monodevelop from svn and compiled it with enable-debugger correctly. But when I run it, there are some errors: 2005-11-17 12:44:01,029

Re: [Mono-dev] Remoting URI Exception

2005-11-22 Thread Lluis Sanchez
Can you please file a bug report for this? thanks! El lun, 21-11-2005 a las 16:09 -0600, Carlos Solorzano escribió: On Nov 21, 2005, at 3:09 PM, Sebastien Pouliot wrote: Hello Carlos, On Mon, 2005-11-21 at 14:56 -0600, Carlos Solorzano wrote: ... Anyways, how would I go about

Re: FW: [Mono-dev] Enum serealization proble in System.Xml.Serialization.XmlMapping

2005-11-22 Thread Lluis Sanchez
El dom, 20-11-2005 a las 01:23 -0800, Vladimir Krasnov escribió: Hello Lluis, Please approve the attached patch to System.Xml.Serialization/XmlTypeMapping.cs The change looks ok, but please: * Use == to compare strings. * you have to apply the fix to the serializer generator, or it will be

[Mono-dev] Re: xsd for char and guid types

2005-11-25 Thread Lluis Sanchez
The patch looks right. Please commit. Thanks! Lluis. El jue, 24-11-2005 a las 06:57 -0800, Konstantin Triger escribió: Hello Lluis, Currently we export the char and guid .Net types as primitives defined in http://www.w3.org/2001/XMLSchema, but they are not. This produces incorrect

Re: [Mono-dev] wsdl to C#: generated stub raises exception on dynamic array casting

2006-01-17 Thread Lluis Sanchez
Hi, You should file a bug report in bugzilla.ximian.com, and pleaso provide the complete wsdl file, since snippets are not enough to reproduce the code generation. The error you are getting could be due to several causes: 1) gSOAP sending messages that do not conform the published WSDL. 2)

Re: [Mono-dev] serialization problem

2006-02-01 Thread Lluis Sanchez
You need to help us help you. You can do it by: * Filing a bug report in bugzilla.ximian.com * Attaching a test app we can use to reproduce the issue. Thanks, Lluis. El mié, 01-02-2006 a las 10:32 +0100, Ivano Luberti escribió: Hi, I'm sorry to bore the list with a bunch of message but after

[Mono-dev] Re: Xml serialization: wrong enum name encoding

2006-02-06 Thread Lluis Sanchez
The patch looks ok to me. Thanks. El dom, 05-02-2006 a las 10:06 -0800, Konstantin Triger escribió: Hi Lluis, We wrongly encode enum names, what causes this WebMethod to fail to consume: public enum MyEnum { ///remarks/

RE: [Mono-dev] RE: FW: [PATCH] Enum XML (de)serialization fixes

2006-02-08 Thread Lluis Sanchez
Hi, I think that at this point we should stop discussing this issue and spend our time in more productive work. First of all, the correct place for reporting bugs and providing patches for those bugs is bugzilla. If the patch is big, splitting it will ease the work of the reviewer (that is,

Re: [Mono-dev] XmlTextWriter: order of namespace declarations

2006-02-09 Thread Lluis Sanchez
Hi, IMHO, the rule if something works don't touch it applies here. Maybe we just need smarter unit tests. Lluis. El jue, 09-02-2006 a las 10:43 +0100, Gert Driesen escribió: Hi, Apparently the order in which namespace declarations are written by Xml(Text)Writer differs between Mono and

Re: [Mono-dev] PATCH for BitArray serialization compatibility with MS.

2006-02-16 Thread Lluis Sanchez
Patch committed. Thanks! El vie, 03-02-2006 a las 15:50 -0500, Sébastien Robitaille escribió: Hi, To support serialization between Mono and MS, I changed the member names of the BitArray class to reflect the names used by MS. Can somebody review and commit this patch? Thanks

Re: [Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Lluis Sanchez
Hi, Please carefully read the mini FAQ in the installer instructions. The error you are getting is documented there: http://www.mono-project.com/InstallerInstructions Lluis. El lun, 20-02-2006 a las 13:45 -0900, Joshua Kugler escribió: I've posted about this before, but have not gotten any

Re: [Mono-dev] Bug in System.Web.Services in SoapMessage.ContentEncoding

2006-03-13 Thread Lluis Sanchez
This patch is not correct. You can't add a protected property that's doesn't exist in the MS api. Moreover, I don't think this is the right way of updating the request. Why not set the initial content type to the message, process it, and then update the request from the resulting message? El lun,

RE: [Mono-dev] Bug in System.Web.Services inSoapMessage.ContentEncoding

2006-03-14 Thread Lluis Sanchez
This one looks ok to me. El mar, 14-03-2006 a las 05:55 -0800, Vladimir Krasnov escribió: Hello, You right, Lluis I've fixed this in different way. Please look at attached files. Vladimir Krasnov -Original Message- From: Lluis Sanchez [mailto:[EMAIL PROTECTED] Sent: Tuesday

Re: [Mono-dev] Bug in System.Web.Services in SoapMessage.Stream

2006-03-15 Thread Lluis Sanchez
Please commit. Thanks! El lun, 13-03-2006 a las 09:19 -0800, Vladimir Krasnov escribió: Hello, Stream property of message is null on client side (when using SoapExtention) in ProcessMessage method. Look attached sample that reproduces the problem. Please approve attached patches that fix

Re: [Mono-dev] patch for Soap Serialization Competability

2006-04-03 Thread Lluis Sanchez
Ok, but please add a test case for this in the unit tests. El dom, 02-04-2006 a las 00:34 -0800, Roei Erez escribió: I have attached a patch for bug 77563. Here is a short description: SoapFormatter group some objects as 'InternalSoapTypes', and deals differently with their serialization

Re: [Mono-dev] Thread Abort() sometimes fails in mono

2006-04-04 Thread Lluis Sanchez
El mar, 04-04-2006 a las 13:16 -0600, Wade Maxfield escribió: Well, to get back to the original question... When doing a web request, or perhaps when printing to the console, sometimes the Abort() call from the main thread to the webthread does not abort the webthread. Is this a

[Mono-dev] Re: [PATCH] DocumentableItem.ExtensibleAttributes

2006-04-10 Thread Lluis Sanchez
Hi, Isn't there a way of doing this without modifying ServiceDescriptionSerializerBase.cs? it is a generated file, so it should not be modified by hand. Lluis. El jue, 06-04-2006 a las 19:23 +0530, Ankit Jain escribió: Hi, The attached patch adds the property

Re: [Mono-dev] System.Web.UI.WebControls/Menu

2006-04-18 Thread Lluis Sanchez
Shouldn't SkipLinkText be stored in the view state? El lun, 17-04-2006 a las 07:41 -0700, Konstantin Triger escribió: Hello, The attached patch handles the following: 1. Enables DataBinding by not throwing NotImplementedException in OnDataBound event. 2. Provides

Re: [Mono-dev] MONO 1.1.14 Remoting server: CPU Memory usage

2006-04-27 Thread Lluis Sanchez
El jue, 27-04-2006 a las 16:26 +0900, Uuganbayar escribió: Hello, I have organized a simple .NET Remoting server on the Linux Advanced Server 4.0 using mono 1.1.14. Just, it receives XML request, and sends back a string response. When I send a request to this server from my PC

RE: [Mono-dev] MONO 1.1.14 Remoting server: CPU Memory usage

2006-04-27 Thread Lluis Sanchez
{ Console.WriteLine(Banking server connected); Console.WriteLine(Your balance: + bank.CheckBalance(99099121, 2934)); } } Regards, Uugan -Original Message- From: Lluis Sanchez [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 6:13 PM To: Uuganbayar Cc: mono

Re: [Mono-dev] Need help with monodevelop

2006-05-19 Thread Lluis Sanchez
Hi, MonoDevelop does not have a visual designer for WinForms or WebForms yet. Work for integrating a WebForm designer might start soon, but there isn't anything usable yet. Lluis. El vie, 19-05-2006 a las 22:16 +0500, Fayyaz Ali escribió: hi i have a problem. how to open the visual editor

Re: [Mono-dev] Serialization strategies for compatibility.

2006-06-05 Thread Lluis Sanchez
El dl 05 de 06 del 2006 a les 00:42 -0400, en/na Miguel de Icaza va escriure: (snip) Since this stuff is genuinely useful, I was considering whether we could make our 1.1 implementation support it, but to avoid exposing a non-existent 1.1 type, we could do a name-based attribute lookup on

Re: [Mono-dev] Serialization strategies for compatibility.

2006-06-05 Thread Lluis Sanchez
In general I agree, but ISerializable is a bit of a special case due to remoting. It is unlkiely but conceivable that somewhere in remoting plumbing (in Mono or another tool) somebody might if(x is ISerializable) There is no such code in remoting, and even if it was I don't see how it

Re: [Mono-dev] Serialization strategies for compatibility.

2006-06-06 Thread Lluis Sanchez
El dt 06 de 06 del 2006 a les 10:54 +0200, en/na Mike Welham va escriure: In general I agree, but ISerializable is a bit of a special case due to remoting. It is unlkiely but conceivable that somewhere in remoting plumbing (in Mono or another tool) somebody might if(x is

Re: [Mono-dev] Problems (bug?) with remothing

2006-06-23 Thread Lluis Sanchez
Hi, This looks like a bug. It is not usual to get this message error, and the test case looks simple. Can you please file a bug report in bugzilla.ximian.com? Thanks, Lluis. El dc 21 de 06 del 2006 a les 18:06 -0600, en/na Alberto Avila va escriure: Hi i'm using mono 1.1.7.1 on windows. I

Re: [Mono-dev] XSP Problem : System.Exception: Error reading headers.

2006-08-21 Thread Lluis Sanchez
El dj 17 de 08 del 2006 a les 11:04 -0500, en/na Brian Crowell va escriure: Robert Jordan wrote: This is related to this bugfix: http://bugzilla.ximian.com/show_bug.cgi?id=76757 http://bugzilla.ximian.com/showattachment.cgi?attach_id=17200 You guys might want to look at the part of

Re: [Mono-dev] [Mono-Dev] [PATCH] System.Web.UI.WebControls.Style.cs, System.Web.UI.WebControls.TreeNodeStyle.cs

2006-09-06 Thread Lluis Sanchez
El mar, 05-09-2006 a las 04:57 -0700, Igor Zalmanovich escribió: Hi All, I am working on TreeView control and all classes that it depends on. I found that TreeNodeStyle does not work properly, in particular the ViewState feature (see corresponding test case). Which is the test

Re: [Mono-dev] Bug System.Web.Services

2006-09-06 Thread Lluis Sanchez
Hi! Well, the patch looks more like a workaround rather than a real fix. Can you provide a test case I can use to see the problem? Thanks, Lluis. El mié, 06-09-2006 a las 09:07 -0700, Vladimir Krasnov escribió: Hello Lluis, The is a bug in getting wsdl, if web service has a web method with

Re: [Mono-dev] bug in xsd.exe

2006-09-12 Thread Lluis Sanchez
El dom, 10-09-2006 a las 20:43 -0700, Lucius Meredith escribió: All, The attached valid schema causes xsd.exe to fail with the following stack trace. i'm working to minimize the example, but any help would be greatly appreciated. The NUllReferenceException error is a bug in mono that has

Re: [Mono-dev] bug in xsd.exe

2006-09-12 Thread Lluis Sanchez
El mar, 12-09-2006 a las 05:38 -0700, L.G. Meredith escribió: Lluis, Thanks for the response. The schema validates against the W3C schema schema using Oxygen. i haven't had the chance, yet to validate it using any other validation tool. Does xsd.exe on mono not support all valid schema?

Re: [Mono-dev] Integrating with MD

2006-10-28 Thread Lluis Sanchez
El ds 28 de 10 del 2006 a les 14:54 +0200, en/na pablosantosluac va escriure: Hi all, We would like to integrate our SCM tool with MonoDevelop. Can you give us any pointer to start with? You could start at http://www.monodevelop.com/Articles. This page has links to some articles which

Re: [Mono-dev] Integrating with MD

2006-10-28 Thread Lluis Sanchez
El ds 28 de 10 del 2006 a les 14:54 +0200, en/na pablosantosluac va escriure: Hi all, We would like to integrate our SCM tool with MonoDevelop. Can you give us any pointer to start with? BTW, I'm working right now in improving the Version Control add-in in MonoDevelop, to be able to provide

Re: [Mono-dev] Patch to build trunk/stetic

2006-11-13 Thread Lluis Sanchez
Patch committed. Thanks! El dc 08 de 11 del 2006 a les 09:52 -0600, en/na Michael Schurter va escriure: Sorry if this is the wrong list for posting stetic patches. I was trying to build trunk/stetic today and had to make some small fixes to get it to build. I've attached a patch with the

Re: [Mono-dev] Remoting RealProxy issue

2006-12-04 Thread Lluis Sanchez
Hi, I don't understand what is the problem. An exception will be thrown only if the remote call returned an exception. El dl 04 de 12 del 2006 a les 01:41 +, en/na Carlos Ble va escriure: Hi! I have a problem with mcs/class/corlib/System.Runtime.Remoting.Proxies/RealProxy.cs, line 202:

Re: [Mono-dev] Monodevelop integration with Plastic SCM

2006-12-18 Thread Lluis Sanchez
El dg 17 de 12 del 2006 a les 14:16 +0100, en/na pablosantosluac va escriure: Lluis (all), We would like to integrate Monodevelop with our SCM tool: Plastic. We are trying to release it running on Mono/Linux by the end of January. We would like to try to integrate it with Monodevelop,

Re: [Mono-dev] Remoting unit tests (HttpChannel) failing after r69986

2007-01-08 Thread Lluis Sanchez
El dg 24 de 12 del 2006 a les 17:33 +0100, en/na Robert Jordan va escriure: Hi! After this patch http://lists.ximian.com/pipermail/mono-patches/2006-December/084885.html the HttpChannel unit tests are timing out. Has this already been fixed? It works for me with current SVN. Robert

Re: [Mono-dev] A significant number of Mono classes are not (binary) compatible with their .Net equivalents?

2007-01-25 Thread Lluis Sanchez
This topic has been discussed in this list several times. Please see the FAQ: http://www.mono-project.com/FAQ:_Technical#What_about_serialization_compatibility.3F_Can_I_serialize_an_object_in_Mono_and_deserialize_it_in_MS.NET_or_vice_versa.3F El dj 25 de 01 del 2007 a les 12:22 +0100, en/na

Re: [Mono-dev] System.Runtime.Remoting.RemotingConfiguration Configure Patch

2007-05-02 Thread Lluis Sanchez
Please commit. Thanks! Lluis. El dc 02 de 05 del 2007 a les 13:52 -0400, en/na Jonathan Chambers va escriure: Hello, Attached is patch to add 2.0 overload of Configure method in System.Runtime.Remoting.RemotingConfiguration. This was done the same way as

Re: [Mono-dev] COM Interop Remoting Patch

2007-05-03 Thread Lluis Sanchez
Hello, Attached is a patch to fix remoting involving COM Interop types. I had previsouly broken this unintentionally. COM Interop uses transparent proxies, and there was lots of places that didn't distinguish between a remoting transparent proxy and a COM Interop transparent proxy. To

Re: [Mono-dev] Subversion on MonoDevelop

2007-05-28 Thread Lluis Sanchez
El dv 25 de 05 del 2007 a les 08:04 -0400, en/na Vladimir Giszpenc va escriure: Hi, The subversion add-in has made my MonoDevelop experience nice and smooth. Yesterday, it hit a slight bump when my subversion server certificate expired. SVN from the command line was able to get a nice

Re: [Mono-dev] Mono 1.2.5

2007-08-01 Thread Lluis Sanchez
El dc 01 de 08 del 2007 a les 13:49 +0300, en/na Szentpali Janos va escriure: Is there a point in complaining (reporting) that monodevelop (included in Mono 1.2.5 preview) doesn't work on other platforms than the officially supported ones (I'm talking Zenwalk)? If it is a packaging problem

Re: [Mono-dev] Compiling monodevelop from SVN

2007-08-14 Thread Lluis Sanchez
El dl 13 de 08 del 2007 a les 21:06 -0500, en/na Brandon Perry va escriure: I started compiling monodevelop today after I compiled mono/mcs. I keep getting a config error. checking for UNMANAGED_DEPENDENCIES_MONO... no checking for UNMANAGED_DEPENDENCIES_MINT... no configure: error: Please

Re: [Mono-dev] MonoDvelop IDE crash

2007-09-14 Thread Lluis Sanchez
El dv 14 de 09 del 2007 a les 17:42 +0530, en/na Abir Bhattacharya va escriure: Hi, I have a C# application(usage of extensive graphics) which I am porting to mono . The applications generates runtime images on the OnPaint() method ,however when it runs in mono ,Linux 2.6 the

Re: [Mono-dev] dead link on mono-project.com/Mono.Addins_Release_Notes

2007-12-08 Thread Lluis Sanchez
El dj 06 de 12 del 2007 a les 17:02 +0100, en/na Martin Dederer va escriure: Hi, on (1) is a dead link (2). (1) http://www.mono-project.com/Mono.Addins_Release_Notes (2) http://www.go-mono.com/sources/mono-addins/mono-addins-0.3.tar.gz Yes, that's because Mono.Addins 0.3 has not yet been

[Mono-dev] Mono.Addins in Monodoc

2007-12-18 Thread Lluis Sanchez
Hi, For some time I've been thinking about changes required in Monodoc, especially regarding how Monodoc creates the documentation tree and locates the available documentation. I'm posting my ideas here because Mike told me that he is going to spend some time fixing Monodoc, so maybe those ideas

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-18 Thread Lluis Sanchez
Adopting Mono.Addins might have some technical advantages, but I think that overall it will get in the way of some required internal work that needs to take place before we start considering more features. The adoption of Mono.Addins is a decision on the application architecture, so it has to

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-18 Thread Lluis Sanchez
El dt 18 de 12 del 2007 a les 13:52 -0500, en/na Miguel de Icaza va escriure: The adoption of Mono.Addins is a decision on the application architecture, so it has to be considered from the beginning. By using Mono.Addins you'll get some additional features (for free), but what's more

Re: [Mono-dev] Remoting performance between two appdomains( plugins) in same process/application

2007-12-19 Thread Lluis Sanchez
El dc 19 de 12 del 2007 a les 09:03 -0600, en/na Shawn Schaerer va escriure: Hi, I have a question on the performance of remoting between two appdomains running in the same process. We have developed a dynamic dll loading program (plugins) using appdomains and assemblies and need to

Re: [Mono-dev] Remoting performance between two appdomains( plugins) in same process/application

2007-12-19 Thread Lluis Sanchez
El dc 19 de 12 del 2007 a les 10:29 -0600, en/na Shawn Schaerer va escriure: Hi, Thanks for the information. I assume that the CrossAppDomainChannel is setup automatically and there is nothing to do to set it up ? Yes, it is setup automatically. When we pass objects

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Lluis Sanchez
Hi! El dc 19 de 12 del 2007 a les 12:36 -0500, en/na Miguel de Icaza va escriure: * Editing in the ECMA provider is hard, but Mike has a plan for that. Is there any doc or something we could review? No, we only spoke on the phone about it. The idea is that Mike

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Lluis Sanchez
El dj 20 de 12 del 2007 a les 10:15 -0600, en/na Mike Kestner va escriure: On Thu, 2007-12-20 at 14:56 +0100, Lluis Sanchez wrote: The idea is that Mike wants to switch to use GtkTextView to render the documentation, and at the same time, this would allow us to implement editing very

Re: [Mono-dev] error while compiling Monodevelop

2008-01-07 Thread Lluis Sanchez
Hi, This error usually means that you don't have the -devel packages of mono installed. They are required to compile MD. Lluis. El dg 16 de 12 del 2007 a les 22:36 +0530, en/na Sharique uddin Ahmed Farooqui va escriure: error while compiling Monodevelop 1.0 beta 2 checking for

Re: [Mono-dev] Deprecating some Mono commands, Cecil mono-api-info

2008-02-28 Thread Lluis Sanchez
El dv 29 de 02 del 2008 a les 00:27 +0100, en/na Robert Jordan va escriure: Jonathan Pryor wrote: On Fri, 2008-02-29 at 00:00 +0100, Mirco Bauer wrote: * prj2make - Use MonoDevelop instead. Hmmm, the only problem I see is that there is no easy known way to use prj2make from

Re: [Mono-dev] Can't debug from monodevelop with 2.2

2009-02-22 Thread Lluis Sanchez
Looks like your debugger is not in sync with your installed mono. If you compiled the debugger from sources, you should recompile it again. El dj 19 de 02 de 2009 a les 16:57 +0100, en/na pablosantosl...@terra.es va escriure: Hi, I've upgraded my develop machine main mono installation to 2.2

Re: [Mono-dev] Can't debug from monodevelop with 2.2

2009-02-22 Thread Lluis Sanchez
with generic collections, does it? Nope, due to limitations in the Mono debugger, inspection of generic collections may not work. Thanks, pablo Lluis Sanchez escribió: Looks like your debugger is not in sync with your installed mono. If you compiled the debugger from sources, you should

[Mono-list] Binary serialization update

2003-01-24 Thread Lluis Sanchez
Hi, I've made some corrections in BinaryFormatter and now it is fully compatible with MS.NET, at least for what I've been able to test. I've also corrected a bug about zero length arrays. Lluis.

Re: [Mono-list] Compile error with current cvs

2003-02-02 Thread Lluis Sanchez
I have gc.dll (the one from libgc-6.1-dev.zip) copied in my install/lib folder, and all gc headers in install/include/gc. Try adding the install/lib directory to your PATH. I already have it. What else could it be? Lluis. ___ Mono-list

Re: [Mono-list] Compile error with current cvs

2003-02-03 Thread Lluis Sanchez
:29, Lluis Sanchez escribió: *** Warning: linker path does not have real file for library -lgc. *** I have the capability to make that library automatically link in when *** you link to this library. But I can only do this if you have a *** shared version of the library, which you do

Re: [Mono-list] RegistrationException

2003-02-04 Thread Lluis Sanchez
Hello! I am working on RegistrationException class in System.EnterpriseServices namepace. the method i am working on is GetObjectData(). I am trying to figure out how .net serializes the Errors in GetObjectData() method in In fact GetObjectData does not serialize information, it just says

Re: [Mono-list] problems with SerializationBinder

2003-02-18 Thread Lluis Sanchez
Hi, SerializationBinder support is not yet implemented in the BinaryFormatter. I'll try to do it in the following days. It looks easy to do. Lluis. - Original Message - From: Ishpal Singh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 18, 2003 11:39 PM Subject:

Re: [Mono-list] Bi-directional remoting

2003-02-21 Thread Lluis Sanchez
... which is also why this won't work when the client is behind a firewall or nat'ing device. because of this little detail, it renders the technology almost useless. :) Certainly, if you want a server to make a call to an object in a client that is behind a firewall, you cannot use

Re: [Mono-list] AppDomain

2003-02-24 Thread Lluis Sanchez
This should work: mono_runtime_invoke (mono_object_get_virtual_method(sampleApplicationHost, klass-vtable[i]), sampleApplicationHost, NULL, NULL); Lluis - Original Message - From: Daniel Lopez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 7:01 PM Subject:

  1   2   3   4   >