Re: [Mono-dev] [Mono-list] Two questions about .net/mono internals

2006-08-04 Thread Robert Jordan
Hey, L.G. Meredith wrote: Another quick follow up. Suppose that my incoming request were not SOAP -- e.g. it was coming from the proprietary format stream, then implementing a SOAP extension will not do what i want. i know that there must be a way to get the current call, but the APIs seem a

[Mono-dev] CreateDelegate Exception

2006-08-04 Thread tcmichals
using 1.1.16 I on Linux, the application and assemblies are compiled using VS.2005, when attempting to Create.CreateDelegate the following exeception occurs: System.InvalidProgramException: Missing or incorrect header for method GetPropertiesViaEvent at 0x0 unknown method at (wrapper

Re: [Mono-dev] CreateDelegate Exception

2006-08-04 Thread tcmichals
Some more information, the code is as follows: Delegate.CreateDeletegate(typeof(call),classObj, myMethodInfo); Before this function is called print out some information: myMethodInfo.Name is GetPropertiesViaEventTCI.IUIToolComm The method in the assembly is declared as GetPropertiesViaEvent, the

[Mono-dev] Extending mono

2006-08-04 Thread Korcan Hussein
Hi i just wanted to know if there is any documentation/resources on extending mono (in particular the vm), this would be very useful for university research projects. If not how about the internal architecture? ___ Mono-devel-list mailing list

Re: [Mono-dev] Extending mono

2006-08-04 Thread Zoltan Varga
Hey, There is some random documentation in mono/docs in SVN. Zoltan On 8/4/06, Korcan Hussein [EMAIL PROTECTED] wrote: Hi i just wanted to know if there is any documentation/resources on extending mono (in particular the vm), this would be very useful for university research

Re: [Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-04 Thread Carlos Alberto Cortez
Hey, I tried your sample with .Net 2.0, and got: controller = System.Windows.Forms.PrintControllerWithStatusDialog Probably in .Net 1.1 it's handled different (if you are using that version, of course). Carlos. El mié, 02-08-2006 a las 07:45 -0400, Chris Toshok escribió: this doesn't work

Re: [Mono-dev] [PATCH] Use the correct type for S.D.Printing.PrintDocument.PrintController

2006-08-04 Thread Chris Toshok
I ran into some issues when using the .net 2.0 sdk on windows. For the time being it's best to run the 1.1 sdk, since that's the behavior we're trying to match. Chris ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] MissingMethodException

2006-08-04 Thread Atsushi Eno
MissingMethodException usually implies that you hit whatever we don't have in mono yet. It is very likely to happen when the type or the member is new in .NET 2.0 (such as Operators class this time): http://mono.ximian.com/class-status/mono-HEAD-vs-fx-2/class-status-Microsoft.VisualBasic.html

[Mono-dev] quick question about SOAP extension configuration

2006-08-04 Thread L.G. Meredith
All,i know this question has been asked a million times, but i can't find an answer that works with my setup. Before i try it on mono, i would to make sure that the SOAP extension i've implemented works on straight up .net. Everything compiles, there are no complaints about the config file. i can

[Mono-dev] Building IronPython - The compiler errors are presumably actual bugs on Mono.

2006-08-04 Thread HEMMI, Shigeru
Hello, Building IronPython on Mono having compilation errors. This has been reported to IronPython mailing list by Sanghyeon Seo. However, Microsoft IPy team is saying that the compiler errors are presumably actual bugs on Mono. Let me know if it is a bug of Mono or not. FYI, take a look at

Re: [Mono-dev] quick question about SOAP extension configuration

2006-08-04 Thread Atsushi Eno
Hi, Just curious, isn't SOAP extension configuration new functionality in .NET 2.0 which we don't support yet? Atsushi Eno L.G. Meredith wrote: All, i know this question has been asked a million times, but i can't find an answer that works with my setup. Before i try it on mono, i would to

Re: [Mono-dev] quick question about SOAP extension configuration

2006-08-04 Thread L.G. Meredith
Atsushi,Thanks for your query. i was under the impression from a previous reply that it was supported in mono.Best wishes,--gregIn response to one of my earlier postings, Robert Jordan wrote: Hey,L.G. Meredith wrote: i'm in the process of writing a gateway application. It speaks SOAP out of one