[Mono-dev] XmlSerializer / exePath must be specified

2006-03-20 Thread Janne Rantala
Hi,I'm trying to run web service proxy with embedded Mono but I keep getting this error message. Can anybody give me a hint where to specify that exePath? Unhandled Exception: System.TypeInitializationException : An exception was thrown by the type initializer for System.Xml.Serialization.XmlSerial

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

2006-03-20 Thread Gonzalo Paniagua Javier
On Mon, 2006-03-20 at 19:16 -0800, Joe Audette wrote: > Hi All, > > I'm seeing a problem on the UserProfile page in mojoPortal. It was > reported to me by a user running the latest release of mono and I am > also seeing it in the latest build of mono from svn r58211 Can you try the System.Web.dll

[Mono-dev] Regression in System.Web

2006-03-20 Thread Joe Audette
Hi All, I'm seeing a problem on the UserProfile page in mojoPortal. It was reported to me by a user running the latest release of mono and I am also seeing it in the latest build of mono from svn r58211 The code in this page hasn't changed in a while and was working without error a while back.

Re: [Mono-dev] Hebrew Calendar

2006-03-20 Thread Atsushi Eno
Hello Yaacov, Oh, so simple fix - I'm unsure whether my guess on long_heshvan() and short_kislev(), but for now it's working and we don't have any further problem, so who cares ;-) Thanks, I'm going to commit your fix. Atsushi Eno Yaacov Akiba Slama wrote: Hello Atsushi, The enclosed patch s

Re: [Mono-dev] [PATCH] Boost speed of UnicodeEncoding

2006-03-20 Thread Atsushi Eno
Just ran a fullbuild and added some tests to not introduce those zero-length regressions. So please go ahead and commit it. Thanks, Atsushi Eno Kornél Pál wrote: OK.:) BTW I just noticed that an usafe keyword is missing from the diff. A correct one is attached. I've done some tests and seem

Re: [Mono-dev] Hebrew Calendar

2006-03-20 Thread Yaacov Akiba Slama
Hello Atsushi, The enclosed patch seems to fix the bug. You can use the link : http://www.abdicate.net/print.aspx?sdn=2453265 to compare with the results of the program enclosed in http://bugzilla.ximian.com/show_bug.cgi?id=76252 Thanks, --yas Atsushi Eno wrote: Hello, Lately I was lookin

Re: [Mono-dev] Bad images on mono website (in "Embedding Mono")

2006-03-20 Thread Miguel de Icaza
> At this page: > http://www.mono-project.com/Embedding_Mono > > In this section: > "How Embedding Works" > > There are several references to images, like: > [Image:existing.png] [Image:linked.png] [Image:loaded.png] > > But these images don't show, can this be fixed somehow? Fixed. __

Re: [Mono-dev] System.Math implementation

2006-03-20 Thread Miguel de Icaza
Hello, > 1. In the folder /mono/mcs/class/corlib/System there is a file > Math.cs. Some functions in this class (eg. Sin, Cos, etc) are > implemented in C. For example, the Sin function is declared as > > [MethodImplAttribute (MethodImplOptions.InternalCall)] > public extern static double Si

[Mono-dev] System.Math implementation

2006-03-20 Thread Rusmin Susanto
Hi all. I have some questions to ask:   1. In the folder /mono/mcs/class/corlib/System there is a file Math.cs. Some functions in this class (eg. Sin, Cos, etc) are implemented in C. For example, the Sin function is declared as     [MethodImplAttribute (MethodImplOptions.InternalCall)] public e

RE: [Mono-dev] [PATCH] MS/Mono incompatibility in System.Web.HttpRequest

2006-03-20 Thread Gonzalo Paniagua Javier
On Mon, 2006-03-20 at 15:41 -0500, Chris Toshok wrote: > I added the unicode character for '<', but didn't put checks in for > either '>' or its corresponding unicode. Are those really an issue? No, they are not. The blocking < seems to be enough. -Gonzalo _

RE: [Mono-dev] [PATCH] MS/Mono incompatibility in System.Web.HttpRequest

2006-03-20 Thread Chris Toshok
On Fri, 2006-03-17 at 19:58 -0500, Gonzalo Paniagua Javier wrote: > On Fri, 2006-03-10 at 09:53 -0500, Chris Toshok wrote: > > I just read in the Shackow's asp.net 2.0 security book about this, > > actually. He says that the three sequences that result in rejecting a > > string are: > > > >

Re: [Mono-dev] New (faster) Implementaiton for managed CharCopy

2006-03-20 Thread Andreas Nahr
On 03/18/06 Andreas Nahr wrote: ALL new Implementations are always faster, sometimes more than twice as fast as current. The best overall is CharCopy autoalign. However I'm not sure if this would work on non-x86 Platforms, but CC aligned should always work if I understand the alignment issues r

Re: [Mono-dev] Bad images on mono website (in "Embedding Mono")

2006-03-20 Thread Janne Rantala
Hi,I've been missing those images too, does anyone here know who could fix this?Cheers,Janne2006/3/17, Martin Olsson <[EMAIL PROTECTED] >:At this page:http://www.mono-project.com/Embedding_Mono In this section:"How Embedding Works"There are several references to images, like:[Image:existing.png] [I

[Mono-dev] C++ embedding

2006-03-20 Thread Denis ERCHOFF
Hi all, I am controlling some .Net class from C++ application. I would like to know if from the C++ context i can add a "delegate like" to a .Net property. I want to catch when a property's getter or a property's setter is called from .Net context. I need to do some works when a public/private

Re: String performance boost (Re: [Mono-dev] Patch to boost speedofUnicodeEncoding)

2006-03-20 Thread Paolo Molaro
On 03/17/06 Zac Bowling wrote: > However when I tested some real world desktop apps (like a little > winform notepad app I have) and some asp.net apps (asp.net forums was > one big one), I was getting a lot of strings larger then that 4096 > chars. Nearly 15% of all the strings where that large in

Re: [Mono-dev] New (faster) Implementaiton for managed CharCopy

2006-03-20 Thread Paolo Molaro
On 03/18/06 Andreas Nahr wrote: > Quick summary: with one exception (which I ABSOLUTELY don't understand why) > ALL new Implementations are always faster, sometimes more than twice as > fast as current. The best overall is CharCopy autoalign. However I'm not > sure if this would work on non-x86

Re: [Mono-dev] Embedded Mono/errors in domain-internals.h

2006-03-20 Thread Zoltan Varga
Hi, These should be fixed as well. Zoltan On 3/20/06, Janne Rantala <[EMAIL PROTECTED]> wrote: > Hi, > > I'm still getting errors regarding libmono - these show up when test-invoke > is building (same happens for teste, mono, and test-metadata projects a

Re: [Mono-dev] [PATCH] Boost speed of UnicodeEncoding

2006-03-20 Thread Kornél Pál
OK.:) BTW I just noticed that an usafe keyword is missing from the diff. A correct one is attached. I've done some tests and seems to be functional but please do some tests as well to ensure everything is OK. Kornél - Original Message - From: "Atsushi Eno" <[EMAIL PROTECTED]> To:

Re: [Mono-dev] [PATCH] Boost speed of UnicodeEncoding

2006-03-20 Thread Atsushi Eno
Quick reply, Kornél Pál wrote: Hi, When I submitted my previous patch I followed the coding style of the existing code. Then you asked me to follow the coding guidelines (actually only three of them but I thought you mean all of them). And I think that a code with half this and half that stlye

Re: [Mono-dev] [PATCH] Boost speed of UnicodeEncoding

2006-03-20 Thread Kornél Pál
Hi, When I submitted my previous patch I followed the coding style of the existing code. Then you asked me to follow the coding guidelines (actually only three of them but I thought you mean all of them). And I think that a code with half this and half that stlye looks ugly so I modified the enti

Re: [Mono-dev] Embedded Mono/errors in domain-internals.h

2006-03-20 Thread Janne Rantala
Hi,I'm still getting errors regarding libmono - these show up when test-invoke is building (same happens for teste, mono, and test-metadata projects as well):Linking...libmono.lib(driver.obj) : error LNK2019: unresolved external symbol _mono_counters_enable referenced in function _mono_main libmono