[Mono-dev] webservice under mono/xsp

2010-09-13 Thread Chakotey STME
Hello Community, I have a webservice-project with nearly no functions and I want to publish it in my local network. Under Windows with IIS I have no problem to publish my webservice. I have a precompiled library (my VB-Code) and a asmx-file. Here is the content of my asmx-file: %@ WebService

Re: [Mono-dev] Can Mono Compiler as Service compile classes?

2010-09-13 Thread robr
I found the answer in the mono file mcs\mcs\repl.txt: * Supporting class-level declarations Currently the evaluator has this feature disabled, to enable it edit the eval.cs file and make this be the default: - parser.Lexer.putback_char =

Re: [Mono-dev] IL-based regex engine

2010-09-13 Thread Rodrigo Kumpera
I have a very selfish suggestion of building a tool that would do huge wonders for us. One major hurdle when debugging bugs either on closed or FOSS software is figuring out what mono did that doesn't match MS behavior. This can require a lot of guesswork and time. So if we had a tool that could

[Mono-dev] Does anyone know why the c# type dynamic does not work in mono c# REPL 2.8?

2010-09-13 Thread robr
Does anyone know why the c# type dynamic does not work in mono c# REPL 2.8? Enter statements below. csharp dynamic x = 4; {interactive}(1,10): error CS8088: Your .NET Runtime does not support ``void' or `void*' field type'. Please use the latest Mono runtime instead. Thanks, Rob -- View this

Re: [Mono-dev] Does anyone know why the c# type dynamic does not work in mono c# REPL 2.8?

2010-09-13 Thread Marek Safar
Hello, Does anyone know why the c# type dynamic does not work in mono c# REPL 2.8? Enter statements below. csharp dynamic x = 4; {interactive}(1,10): error CS8088: Your .NET Runtime does not support ``void' or `void*' field type'. Please use the latest Mono runtime instead. It

Re: [Mono-dev] Can Mono Compiler as Service compile classes?

2010-09-13 Thread Miguel de Icaza
I was wondering can the Mono Compiler as a Service compile classes? I tried but I get a parse error. Would it be hard for me to modify it to compile classes? (I am using v2.8 on top of ms .net 4.0) It does not, it is only for expressions and statements. The parser work is done (so the REPL

Re: [Mono-dev] mono.simd

2010-09-13 Thread Miguel de Icaza
This patch is contributed under the MIT license I don't have push access to the main repository, so please commit the patch yourself. This is an oversight, could I have your GitHub account so I can add you to the group? ___ Mono-devel-list

Re: [Mono-dev] mono.simd

2010-09-13 Thread Miguel de Icaza
This patch is contributed under the MIT license I don't have push access to the main repository, so please commit the patch yourself. Ah, never mind, found you: robert-j You are now part of the Mono commit team. ___ Mono-devel-list mailing

Re: [Mono-dev] Does anyone know why the c# type dynamic does not work in mono c# REPL 2.8?

2010-09-13 Thread robr
I added bug report: Bug #639010. -- View this message in context: http://mono.1490590.n4.nabble.com/Does-anyone-know-why-the-c-type-dynamic-does-not-work-in-mono-c-REPL-2-8-tp2537605p2537946.html Sent from the Mono - Dev mailing list archive at Nabble.com.

Re: [Mono-dev] IL-based regex engine

2010-09-13 Thread Eddy Zavaleta
I am not really sure to undertand your suggestion (English is not my mother tongue). You are suggesting a tool which adds code to the assemblies that generates code coverage data using Cecil. It would print out something similar to what mono --trace does, right? On Mon, Sep 13, 2010 at 5:22 AM,