[Mono-dev] Changes in mono makes monodevelop crashing

2006-11-17 Thread Hubert FONGARNAND
Just as information

It seem's that changes in Serialization in the .NET 2.0 profile break
monodevelop today

System.Runtime.Serialization.SerializationException: No element named
KeyComparer could be found.
  at System.Runtime.Serialization.SerializationInfo.GetValue
(System.String name, System.Type type) [0x0009b]
in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization/SerializationInfo.cs:152
 
  at System.Collections.Hashtable.OnDeserialization (System.Object
sender) [0x00059]
in /home/hubert/mono/mcs/class/corlib/System.Collections/Hashtable.cs:578 
  at
System.Runtime.Serialization.ObjectManager.RaiseDeserializationEvent ()
[0x00076]
in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization/ObjectManager.cs:169
 
  at
System.Runtime.Serialization.Formatters.Binary.ObjectReader.ReadNextObject 
(System.IO.BinaryReader reader) [0x0001a] in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs:117
 
  at
System.Runtime.Serialization.Formatters.Binary.ObjectReader.ReadObjectGraph 
(System.IO.BinaryReader reader, Boolean readHeaders, System.Object result, 
System.Runtime.Remoting.Messaging.Header[] headers) [0x00044] in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs:105
 
  at
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.NoCheckDeserialize
 (System.IO.Stream serializationStream, 
System.Runtime.Remoting.Messaging.HeaderHandler handler) [0x00079] in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization.Formatters.Binary/BinaryFormatter.cs:172
 
  at
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize 
(System.IO.Stream serializationStream) [0x0] in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization.Formatters.Binary/BinaryFormatter.cs:129
 
  at MonoDevelop.Projects.Parser.CodeCompletionDatabase.ReadHeaders
(System.String baseDir, System.String name) [0x00022]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/CodeCompletionDatabase.cs:176
 
  at
MonoDevelop.Projects.Parser.AssemblyCodeCompletionDatabase.CleanDatabase
(System.String baseDir, System.String name) [0x0]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/AssemblyCodeCompletionDatabase.cs:212
 
  at MonoDevelop.Projects.Parser.ParserDatabase.DeleteObsoleteDatabases
() [0x00033]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/DefaultParserService.cs:913
 
  at MonoDevelop.Projects.Parser.ParserDatabase.Initialize () [0x6]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/DefaultParserService.cs:562
 
  at
MonoDevelop.Projects.Parser.DefaultParserService.CreateParserDatabase ()
[0x7]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/DefaultParserService.cs:41
 
  at MonoDevelop.Ide.Gui.ProjectOperations..ctor () [0x00069]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/ProjectOperations.cs:81
 
  at MonoDevelop.Ide.Gui.IdeApp.Initialize (IProgressMonitor monitor)
[0xa]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Ide.cs:90
 
  at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00328]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs:157
 
___
Ce message et les éventuels documents joints peuvent contenir des informations 
confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien vouloir 
le supprimer et en aviser immédiatement l'expéditeur. Toute utilisation de ce 
message non conforme à sa destination, toute diffusion ou publication, totale 
ou partielle et quel qu'en soit le moyen est formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce 
message n'est pas assurée et la société émettrice ne peut être tenue pour 
responsable de son contenu.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Changes in mono makes monodevelop crashing

2006-11-17 Thread Robert Jordan

Hubert FONGARNAND wrote:

Just as information

It seem's that changes in Serialization in the .NET 2.0 profile break
monodevelop today


This is due to this change in System.Collection.Hashtable:

2006-11-16  Miguel de Icaza  [EMAIL PROTECTED]

* Hashtable.cs: Serialize EqualityComparer.


The change introduced a deserialization incompatibility of data
serialized before the change.

Please try the attached patch.

Robert



System.Runtime.Serialization.SerializationException: No element named
KeyComparer could be found.
  at System.Runtime.Serialization.SerializationInfo.GetValue
(System.String name, System.Type type) [0x0009b]
in /home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization/SerializationInfo.cs:152 
  at System.Collections.Hashtable.OnDeserialization (System.Object

sender) [0x00059]
in /home/hubert/mono/mcs/class/corlib/System.Collections/Hashtable.cs:578 
Index: System.Collections/Hashtable.cs
===
--- System.Collections/Hashtable.cs (revision 68053)
+++ System.Collections/Hashtable.cs (working copy)
@@ -575,7 +575,10 @@
loadFactor = (float) serializationInfo.GetValue 
(LoadFactor, typeof(float));
modificationCount = (int) serializationInfo.GetValue 
(Version, typeof(int));
 #if NET_2_0
-   equalityComparer = (IEqualityComparer) 
serializationInfo.GetValue (KeyComparer, typeof (object));
+   try {
+   equalityComparer = (IEqualityComparer) 
serializationInfo.GetValue (KeyComparer, typeof (object));
+   } catch (SerializationException) {
+   }
if (equalityComparer == null)
comparerRef = (IComparer) 
serializationInfo.GetValue (Comparer, typeof (object));
 #else
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] wsdl issue?

2006-11-17 Thread blackdog

Hi

I'm new to web services so i don't know what's going on here. I generate my
web service and i can access it no problem from a mono client, however, i
tried to create a java web service client from netbeans 5.5 and it
complained about the documentation attribute turning up twice  sure
enough on inspection of the wsdl, i see this

message name=StopAllHttpPostOut/
−
   portType name=ControlSoap
−
   operation name=Start
wsdl:documentationtest/wsdl:documentation
wsdl:documentationtest/wsdl:documentation
input message=s0:StartSoapIn/
output message=s0:StartSoapOut/
/operation
−
   operation name=Stop
wsdl:documentation /wsdl:documentation
wsdl:documentation/wsdl:documentation
input message=s0:StopSoapIn/
output message=s0:StopSoapOut/
/operation

if my methods have or don't have a description then the documentation
attribute turns up twice.

Is this a bug in mono or java? oh i'm running this on mono 1.1.18.

Thanks

Ritchie
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] ASP.NET 2.0 with apache

2006-11-17 Thread Thiago Alves

Hi folks,

Two weeks ago I installed mono 1.1 because I wanted to host ASP.NET 2.0 in
my linux machine. I was able to run an ASP.NET 2.0 using xsp2, but I had
problems trying to use mod_mono (it only worked for ASP.NET 1.0 projects).
After lots of Googling I decided to get the latest releases of apache, mono,
xsp and mod_mono.

Now I have no problem setting apache to run ASP.NET through mod_mono and
mod-mono-server.exe, but I still have only ASP.NET 1.0. After some search I
realized that there is a mod-mono-server2.exe which runs ASP.NET 2.0, but
I simply can't find it anywhere!

Is it possible to host 2.0 pages using apache instead of xsp2? What should I
do?

Thanks in advance!

Thiago Alves
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ASP.NET 2.0 with apache

2006-11-17 Thread Joe Audette

Hi,

See the documentation for mod_mono here:
http://www.mono-project.com/Mod_mono

I also have a tutorial here that may be helpful
http://www.joeaudette.com/settingupapachevirtualhostswithmod_mono.aspx

Hope it helps,

Joe

On 11/17/06, Thiago Alves [EMAIL PROTECTED] wrote:


Hi folks,

Two weeks ago I installed mono 1.1 because I wanted to host ASP.NET 2.0 in
my linux machine. I was able to run an ASP.NET 2.0 using xsp2, but I had
problems trying to use mod_mono (it only worked for ASP.NET 1.0 projects).
After lots of Googling I decided to get the latest releases of apache, mono,
xsp and mod_mono.

Now I have no problem setting apache to run ASP.NET through mod_mono and
mod-mono-server.exe, but I still have only ASP.NET 1.0. After some search
I realized that there is a mod-mono-server2.exe which runs ASP.NET 2.0,
but I simply can't find it anywhere!

Is it possible to host 2.0 pages using apache instead of xsp2? What should
I do?

Thanks in advance!

Thiago Alves

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ASP.NET 2.0 with apache

2006-11-17 Thread Rafael Teixeira
Olá Tiago,

Yes it is possible, but ASP.NET 2.0 support is still under development
in Mono, so you may stumble on unimplemented features.

Bons desenvolvimentos,

On 11/17/06, Thiago Alves [EMAIL PROTECTED] wrote:
 Hi folks,

 Two weeks ago I installed mono 1.1 because I wanted to host ASP.NET 2.0 in
 my linux machine. I was able to run an ASP.NET 2.0 using xsp2, but I had
 problems trying to use mod_mono (it only worked for ASP.NET 1.0 projects).
 After lots of Googling I decided to get the latest releases of apache, mono,
 xsp and mod_mono.

 Now I have no problem setting apache to run ASP.NET through mod_mono and
 mod-mono-server.exe, but I still have only ASP.NET 1.0. After some search I
 realized that there is a mod-mono-server2.exe which runs ASP.NET 2.0, but
 I simply can't find it anywhere!

 Is it possible to host 2.0 pages using apache instead of xsp2? What should I
 do?

 Thanks in advance!

 Thiago Alves

 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list





-- 
Rafael Monoman Teixeira
---
The reasonable man adapts himself to the world; the unreasonable one
persists in trying to adapt the world to himself. Therefore all
progress depends on the unreasonable man. George Bernard Shaw
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] [PATCH] ASP.NET 2.0 event validation support

2006-11-17 Thread Gonzalo Paniagua Javier
On Fri, 2006-11-17 at 02:38 +0100, Marek Habersack wrote:
 Hello,
 
   Attached is a patch that implements postback/callback event
 validation for ASP.NET 2.0. I tried to enable it for the controls that
 support it following the common-sense approach, tests show that the
 controls on MS.NET behave as ours - but I guess time will show if I was
 right. Anyhow, please review and let me know if I can commit :)

Please, commit.

Thanks a lot.

-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] ASP.NET 2.0 event validation support

2006-11-17 Thread Marek Habersack
On Fri, 17 Nov 2006 13:34:26 -0500, Gonzalo Paniagua Javier
[EMAIL PROTECTED] scribbled:

 On Fri, 2006-11-17 at 02:38 +0100, Marek Habersack wrote:
  Hello,
  
Attached is a patch that implements postback/callback event
  validation for ASP.NET 2.0. I tried to enable it for the controls
  that support it following the common-sense approach, tests show
  that the controls on MS.NET behave as ours - but I guess time will
  show if I was right. Anyhow, please review and let me know if I can
  commit :)
 
 Please, commit.
Done, thanks :)

marek


signature.asc
Description: PGP signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Fwd: COM Callable Wrapper Patch

2006-11-17 Thread Jon Chambers

I had sent a previous patch for supporting COM Callable Wrappers in mono. I
removed the patch as it was too large to send, and probably to large to
review. I'm breaking it down into a series of smaller patches, and here is
the first. There is some managed changes that are somewhat minor. The big
part of this patch is to put a level of indirection in the creation of
managed-unmanaged wrappers. Right now, a delegate class is needed. I
created another function to seperate out all the delegate specific code.
Then, I can use this new function to create wrappers for managed methods for
COM without a delegate class for each.

BTW, you can read the text below if you want an idea of the overall changes
I will be proposing. All code is code is contributed under the MIT/X11
license. I also understand that this may have to wait until 1.2.* is out the
door. Please let me know if the patch is acceptable and when I can commit
it.

Thanks,
Jonathan

-- Forwarded message --
From: Jon Chambers [EMAIL PROTECTED]
Date: Nov 10, 2006 11:41 PM
Subject: COM Callable Wrapper Patch
To: Mono Devel List  mono-devel-list@lists.ximian.com

This patch adds support for COM Callable Wrappers to mono (exposing
managed objects as COM objects to unmanaged code). I started to clean up
some other cominterop work, but it just made the patch harder to read. So, I
only put new methods at the bottom of the marshal.c file with the long term
goal of all cominterop related methods located there or in another file. I
also implemented/modified alot of the marshalling code to support COM
Interop in both directions. Anyway, there are 2 changes that affect the
runtime in non-cominterop cases. The first is the addition of the
mono_marshal_emit_managed_wrapper. This method incorporates alot of the
functionality contained in the existing mono_marshal_get_managed_wrapper.
Basically, all the delegate specific code is in
mono_marshal_get_managed_wrapper, and the general code for wrapping a
managed method is located in mono_marshal_emit_managed_wrapper so I can
create function pointers for the COM vtable without having a delegate type
for each method. If there is a better approach let me know.
The second change that affects the runtime is gc.c. Basically, any
managed object can be passed to unmanaged code. At that point, an unmanaged
representation of the managed object is created. This needs cleaned up when
the object is garbage collected. So, I register the object for finalization.
In the finalizer code, I check to see if the object has a ccw. There is a
quick return if no CCW's have been created, so while there is a function
call the hash table lookup only occurs if the program actually uses CCWs.
As previously mentioned, I would like to clean up the COM Interop code
(mainly by grouping together at the bottom) and inserting some #ifdefs to
allow COM support to be not enabled in the runtime to save space. I'll do
this in some future patches if no one objects. Also, I am pretty sure I need
some more locking around this code for thread safety. I'll also take a look
at that for a future patch.
Finally, for debugging I find myself putting alot of printf's into the
code. Can leave them in either via
#ifdef DEBUG_COMINTEROP
printf (...)
#endif

or

DEBUG_COMINTEROP (printf (...))

at least during this beginning stage when I'm debugging alot (or someone
give a better suggestion)?

Please review and comment. There are tests added as well for this
functionality with some more to come. As usual, this code is contributed
under the MIT/X11 license, and I signed off in the ChangeLogs within the
runtime code.

Thanks,
Jonathan
Index: mcs/class/corlib/Mono.Interop/ChangeLog
===
--- mcs/class/corlib/Mono.Interop/ChangeLog	(revision 68057)
+++ mcs/class/corlib/Mono.Interop/ChangeLog	(working copy)
@@ -1,3 +1,8 @@
+2006-10-18  Jonathan Chambers  [EMAIL PROTECTED]
+
+	* IUnknown.cs: Added.
+	* IDispatch.cs: Added.
+
 2006-08-10  Jonathan Chambers  [EMAIL PROTECTED]
 
 	* ComInteropProxy.cs: Fix default constructor being always
Index: mcs/class/corlib/Mono.Interop/IDispatch.cs
===
--- mcs/class/corlib/Mono.Interop/IDispatch.cs	(revision 0)
+++ mcs/class/corlib/Mono.Interop/IDispatch.cs	(revision 0)
@@ -0,0 +1,41 @@
+//
+// Mono.Interop.IDispatch
+//
+// Authors:
+//   Jonathan Chambers [EMAIL PROTECTED]
+//
+// Copyright (C) 2006 Jonathan Chambers
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// Software), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The 

Re: [Mono-dev] Mono-devel-list Digest, Vol 19, Issue 30

2006-11-17 Thread Kimerop Kimeropweb.com
/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Ide.cs:90
   at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00328]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs:157
___
Ce message et les éventuels documents joints peuvent contenir des 
informations confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien 
vouloir le supprimer et en aviser immédiatement l'expéditeur. Toute 
utilisation de ce message non conforme à sa destination, toute diffusion ou 
publication, totale ou partielle et quel qu'en soit le moyen est 
formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce 
message n'est pas assurée et la société émettrice ne peut être tenue pour 
responsable de son contenu.
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/fc138e36/attachment-0001.html

--

Message: 2
Date: Fri, 17 Nov 2006 10:47:24 +0100
From: Robert Jordan [EMAIL PROTECTED]
Subject: Re: [Mono-dev] Changes in mono makes monodevelop crashing
To: mono-devel-list@lists.ximian.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

Hubert FONGARNAND wrote:
  Just as information
 
  It seem's that changes in Serialization in the .NET 2.0 profile break
  monodevelop today

This is due to this change in System.Collection.Hashtable:

2006-11-16  Miguel de Icaza  [EMAIL PROTECTED]

  * Hashtable.cs: Serialize EqualityComparer.


The change introduced a deserialization incompatibility of data
serialized before the change.

Please try the attached patch.

Robert

 
  System.Runtime.Serialization.SerializationException: No element named
  KeyComparer could be found.
at System.Runtime.Serialization.SerializationInfo.GetValue
  (System.String name, System.Type type) [0x0009b]
  in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization/SerializationInfo.cs:152
at System.Collections.Hashtable.OnDeserialization (System.Object
  sender) [0x00059]
  in 
/home/hubert/mono/mcs/class/corlib/System.Collections/Hashtable.cs:578
-- next part --
An embedded and charset-unspecified text was scrubbed...
Name: Hashtable.diff
Url: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/70773881/attachment-0001.pl

--

Message: 3
Date: Fri, 17 Nov 2006 11:15:08 -0300
From: blackdog [EMAIL PROTECTED]
Subject: [Mono-dev] wsdl issue?
To: mono-devel-list@lists.ximian.com
Message-ID:
   [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-2022-jp

Hi

I'm new to web services so i don't know what's going on here. I generate my
web service and i can access it no problem from a mono client, however, i
tried to create a java web service client from netbeans 5.5 and it
complained about the documentation attribute turning up twice  sure
enough on inspection of the wsdl, i see this

message name=StopAllHttpPostOut/
?
 portType name=ControlSoap
?
 operation name=Start
wsdl:documentationtest/wsdl:documentation
wsdl:documentationtest/wsdl:documentation
input message=s0:StartSoapIn/
output message=s0:StartSoapOut/
/operation
?
 operation name=Stop
wsdl:documentation /wsdl:documentation
wsdl:documentation/wsdl:documentation
input message=s0:StopSoapIn/
output message=s0:StopSoapOut/
/operation

if my methods have or don't have a description then the documentation
attribute turns up twice.

Is this a bug in mono or java? oh i'm running this on mono 1.1.18.

Thanks

Ritchie
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/e3a8b921/attachment-0001.html

--

Message: 4
Date: Fri, 17 Nov 2006 14:32:01 -0200
From: Thiago Alves [EMAIL PROTECTED]
Subject: [Mono-dev] ASP.NET 2.0 with apache
To: mono-devel-list@lists.ximian.com
Message-ID:
   [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

Hi folks,

Two weeks ago I installed mono 1.1 because I wanted to host ASP.NET 2.0 in
my linux machine. I was able to run an ASP.NET 2.0 using xsp2, but I had
problems trying to use mod_mono (it only worked for ASP.NET 1.0 projects).
After lots of Googling I decided to get the latest releases of apache, 
mono,
xsp and mod_mono.

Now I have no problem setting apache to run ASP.NET through mod_mono and
mod-mono-server.exe, but I still have only ASP.NET 1.0. After some search I
realized that there is a mod-mono-server2.exe which runs ASP.NET 2.0, but
I simply can't find it anywhere!

Is it possible to host 2.0 pages using apache instead of xsp2? What should 
I
do?

Thanks in advance!

Thiago Alves
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono

[Mono-dev] Load Librery ....

2006-11-17 Thread Kimerop Kimeropweb.com
/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Ide.cs:90
   at MonoDevelop.Ide.Gui.IdeStartup.Run (System.String[] args) [0x00328]
in 
/home/hubert/mono/monodev-stable/monodevelop-0.12/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs:157
___
Ce message et les éventuels documents joints peuvent contenir des 
informations confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien 
vouloir le supprimer et en aviser immédiatement l'expéditeur. Toute 
utilisation de ce message non conforme à sa destination, toute diffusion ou 
publication, totale ou partielle et quel qu'en soit le moyen est 
formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce 
message n'est pas assurée et la société émettrice ne peut être tenue pour 
responsable de son contenu.
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/fc138e36/attachment-0001.html

--

Message: 2
Date: Fri, 17 Nov 2006 10:47:24 +0100
From: Robert Jordan [EMAIL PROTECTED]
Subject: Re: [Mono-dev] Changes in mono makes monodevelop crashing
To: mono-devel-list@lists.ximian.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

Hubert FONGARNAND wrote:
  Just as information
 
  It seem's that changes in Serialization in the .NET 2.0 profile break
  monodevelop today

This is due to this change in System.Collection.Hashtable:

2006-11-16  Miguel de Icaza  [EMAIL PROTECTED]

  * Hashtable.cs: Serialize EqualityComparer.


The change introduced a deserialization incompatibility of data
serialized before the change.

Please try the attached patch.

Robert

 
  System.Runtime.Serialization.SerializationException: No element named
  KeyComparer could be found.
at System.Runtime.Serialization.SerializationInfo.GetValue
  (System.String name, System.Type type) [0x0009b]
  in 
/home/hubert/mono/mcs/class/corlib/System.Runtime.Serialization/SerializationInfo.cs:152
at System.Collections.Hashtable.OnDeserialization (System.Object
  sender) [0x00059]
  in 
/home/hubert/mono/mcs/class/corlib/System.Collections/Hashtable.cs:578
-- next part --
An embedded and charset-unspecified text was scrubbed...
Name: Hashtable.diff
Url: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/70773881/attachment-0001.pl

--

Message: 3
Date: Fri, 17 Nov 2006 11:15:08 -0300
From: blackdog [EMAIL PROTECTED]
Subject: [Mono-dev] wsdl issue?
To: mono-devel-list@lists.ximian.com
Message-ID:
   [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-2022-jp

Hi

I'm new to web services so i don't know what's going on here. I generate my
web service and i can access it no problem from a mono client, however, i
tried to create a java web service client from netbeans 5.5 and it
complained about the documentation attribute turning up twice  sure
enough on inspection of the wsdl, i see this

message name=StopAllHttpPostOut/
?
 portType name=ControlSoap
?
 operation name=Start
wsdl:documentationtest/wsdl:documentation
wsdl:documentationtest/wsdl:documentation
input message=s0:StartSoapIn/
output message=s0:StartSoapOut/
/operation
?
 operation name=Stop
wsdl:documentation /wsdl:documentation
wsdl:documentation/wsdl:documentation
input message=s0:StopSoapIn/
output message=s0:StopSoapOut/
/operation

if my methods have or don't have a description then the documentation
attribute turns up twice.

Is this a bug in mono or java? oh i'm running this on mono 1.1.18.

Thanks

Ritchie
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono-devel-list/attachments/20061117/e3a8b921/attachment-0001.html

--

Message: 4
Date: Fri, 17 Nov 2006 14:32:01 -0200
From: Thiago Alves [EMAIL PROTECTED]
Subject: [Mono-dev] ASP.NET 2.0 with apache
To: mono-devel-list@lists.ximian.com
Message-ID:
   [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

Hi folks,

Two weeks ago I installed mono 1.1 because I wanted to host ASP.NET 2.0 in
my linux machine. I was able to run an ASP.NET 2.0 using xsp2, but I had
problems trying to use mod_mono (it only worked for ASP.NET 1.0 projects).
After lots of Googling I decided to get the latest releases of apache, 
mono,
xsp and mod_mono.

Now I have no problem setting apache to run ASP.NET through mod_mono and
mod-mono-server.exe, but I still have only ASP.NET 1.0. After some search I
realized that there is a mod-mono-server2.exe which runs ASP.NET 2.0, but
I simply can't find it anywhere!

Is it possible to host 2.0 pages using apache instead of xsp2? What should 
I
do?

Thanks in advance!

Thiago Alves
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.ximian.com/pipermail/mono