mono

Can't use Mono Soft Debugger Remote Debugging because 'debugger-agent: DWP handshake failed' error

Hello! I've embedded mono in my application. The application is console application that supports plug-ins. Plug-ins are .NET assemblies. All work great, but i want to debug them. To enable debugging in my C-code i have: mono_set_dirs (ASSEMBLIES_DIR_NAME, ASSEMBLIES_DIR_NAME); assembly_add_to_bundle(API_ASSEMBLY); soft_debug = getenv...

Serialize SOAP Header as Document Style XML

I have a proxy to a SOAP web service that requires a session object in the SOAP header. The web service is unable to read the session information from the header when it is in the form using a reference: <SessionInfo href="#id1"/> <SessionInfo id="id1"> <UID>1</UID> </SessionInfo> The service I am using requires a RPC style...

Selenium+Mono Start Issue

I'm trying to get Selenium to work with Mono. I downloaded the VM from Mono (http://www.mono-project.com/VMware_Image) and Selenium RC. I am trying to use this simple code: using System; using Selenium; namespace SeleniumTest1 { class MainClass { public static void Main (string[] args) { ISelenium selenium = new DefaultSeleniu...

Is MonoDevelop remote debugging works on Windows

I'm using mono-2.6.7 and monodevelop-2.4, my OS is Windows 7. I'm trying to implement a remote debugger for my own runtime (based on mono, mono is embedded in it, used lang - C#) in a way it's done by Novell for Moonlight. Unfortunately, no success... After clicking "Debug" in MonoDevelop: IDE is put into debug state, my runtime...

Is Mono for ASP.NET mature enough for real applications?

Have you heard of real ASP.NET applications that use Mono? What problems do they face? Would you advice this technology to build a server-side for a RIA? We plan to build ASP.NET Web Service. There is a team of .NET developers and we want to reuse our skills so we have to stick to ASP.NET. But it would be undesirable to use Windows serve...

ODBC error when connecting to Informix DB with mono installed

I have recently installed Mono on our Fedora Linux system so that we are able to run ASP.NET applications on it. I was able to get this part up and running, but the problem is we use a Informix DB and Mono seems to stop the ODBC from working. Have anyone any experience of getting an ODBC to connect to an Informix DB with Mono instal...

Why is Mono implementing WCF?

Why is the Mono project implementing WCF interfaces and classes "as is"? I do not understand what is the point to repeat Microsoft's design. My experience says that WCF is a huge framework with an implementation based on SOAP services. There are tremendous problems with their approach. It simply does not fit well for simple HTTP request...

c# (mono, dotgnu) for arm embedded questions

Has anyone experience with c# or .net based languages for arm based boards? Are there compilers that make my code ready for the arm board? Is it recommed to develop with linux or windows? Are there advantages having a Linux, or Windows OS on the target board? any help appreciated. Thx ...

Portable way of determining font properties (mono and standard .net)

Does anyone know a way to determine if a font is monospace and the width and height of a single character (only relevant if it is monospace). The important requirement is that it works with mono and microsoft implementations of .net . Thanks ...

Take a screenshot of the active window in mono

Hi, is there a way to take a screenshot of the active window using mono under Linux ? Thanks in advance Mike ...

Problems signing a dll in F# on Mono

I'm getting an error trying to sign a dll in F# on mono: $ mono /usr/local/share/FSharp-2.0.0.0/bin/fsc.exe\ --target:library \ --keyfile:../../external/MyKeyFile.snk\ AssemblyInfo.fs\ ../../fs/FooBar.fs\ -o:FooBar.dll No dll is generated, and I get this error back: Microsoft (R) F# 2.0 Compiler build 2.0.0.0 Copyri...

How widely used is Mono for real-world applications?

Followup question to comments here My impression had been that Mono is a science project. Is that inaccurate? Extra credit for recounting personal usage. ...

Looking for UI library for .NET and Mono

Hi I'm looking for a UI library for .NET and Mono, something like Gtk#, but with support for 64-bit (on Windows too), and with some widget like WinForm's ListView, with VirtualMode. I don't want to use WinForms and WPF. Is there any alternative? Thanks. ...

how to pack few c# dll's into one dll

Hi I have few dll's of c# code and I want to pack it to one dll. I am looking for something like ilmerge in linux. Do anyone know an alternative? Thanks, Ohad. ...

Server error in '/' Application in Mvc Music Store ASP.Net MVC Sample Ported to Mono

I'm currently porting the Mvc Music Store example to Mono, and it going very well, but I've run into a snag with a trailing slash on one of the routes. On the master page is the following link <a href="/Store/">Store</a> When I run the application and navigate to /Store/ I get the following error Server Error in '/' Application The ...

Printing from mono on OS X

I am pretty new to the platform, but I would like to know if anybody tried printing from a Mac using the Mono framework? Seems like the internal namespaces that are usually used to print on other platforms are not fully implemented (System.Drawing, System.Drawing.Printing) so does anybody know of a better way to do printing? Or is MonoM...

Can't get MONO_ASPNET_NODELETE to work

I'm trying to get to the temporary files that mono compiler is generating for my codebehind classes. But it deletes them after compilation is performed, while throwing errors to the console. Error messages reference files that are no longer available. In theory the MONO_ASPNET_NODELETE environment variable should prevent those from bein...

How can I take a look at the Unicode normalization algorithm in .Net/C# with Mono?

Dear all, how do I get to peek at the source code for any of the algorithms of .NET? In particular, I'd like to take a look at the unicode normalization algorithm... I'm using Mono in Ubuntu. ...

Mono says 'System.Net.Dns.GetHostEntry(string)' is inaccessible due to its protection level

I'm taking a class right now where some of the examples are in C#. Since my laptop runs Linux, I'm using Mono 2.6.7 on Ubuntu. I'm trying to compile the following code: using System.Net.Sockets; using System.Net; using System; /// <summary> /// Example program showing simple TCP socket connections in C#.NET. /// Rather than reading an...

Random errors compiling with Mono gmcs on Snow Leopard

Hi everyone, I'm running OS 10.6.4, and recently tried installing Mono. Something seems to have gone awry though, I can't even compile basic code. The following: using System; public class HelloWorld { public static void Main() { Console.WriteLine("Hello Mono World!") } } Gives me this result: user$ gmcs...