Mono is an open source implementation of .NET that runs on many platforms, including Linux, Mac OS X, and Windows. This allows running .NET applications on platforms other than Windows with little to no modification.

learn more… | top users | synonyms

1
vote
0answers
111 views

Trigger the mono soft debugger at runtime

I can already debug easily using the soft debugger as a command line option (--debug --debugger-agent=transport=dt_socket,address=host:port) to mono when starting the app, but I want my program to ...
1
vote
0answers
284 views

Mono application using Console.CancelKeyPress cannot be run in background

I have a console application in Mono under Linux that uses Console.CancelKeyPress to listen for SIGINT. However, this applications refuses to run in the background, as it always immediately gets ...
1
vote
0answers
214 views

Invoking remote methods is loading the remote assembly in parent appdomain

I think I've determined that even though I'm loading assemblies in a MarshalByRefObject in a new AppDomain that the assemblies are also getting loaded into the parent domain. Here's my Assembly ...
1
vote
0answers
104 views

Mono - Compiler as Service, how to create instance of the compiled class

I am using this simple program :- var evaluator = new Evaluator( new CompilerSettings(), new Report(new ConsoleReportPrinter())); // Make it reference our own assembly so it can use IFoo ...
1
vote
0answers
230 views

Bootstrapping mono on an OCTEON (mips64) gives a working runtime, but gmcs doesn't work

I'm trying to compile mono (from git) for a Cavium OCTEON (mips64) running Debian Sid. If I try to compile entirely on the OCTEON, (without any kind of existing mono install), it gets as far as the ...
1
vote
0answers
359 views

using web services in mono android under Visual Studio 10

I have created a very simple web service, and referenced it ok in my project, it all checks out when I define it ... wstest.Service1 ws; ws = new wstest.Service1(); string xx = ws.HelloWorld(); ...
1
vote
0answers
223 views

Making Mono and Mkbundle turn C# code into executable file for target system?

My goal: Writing some C#-code, compile it, and run it at the target server (Apache Web Server, OS: Debian GNU/Linux 32bit) using PHP-command passthru("newfile",...). Now: Based on the advice I got ...
1
vote
0answers
534 views

mono 2.10.2 + asp.net mvc3 + MySql.Data.dll

I have following configuration: CentOS 5.6 final (Linux 2.6.18-238.12.1.el5 #1 SMP Tue May 31 13:22:04 EDT 2011 x86_64) Apache web server (Apache/2.2.17 (EL), API 20051115) Mono 2.10.2 (from ...
1
vote
0answers
883 views

Mono SerialPort with infiniteTimeout on Read

I have a device that responds async, on event that occurs on the device it sends a status over serial to the host. So as mono does not have DataReceived event implemented i created a thread "PollRun" ...
1
vote
0answers
195 views

Moonlight on MAC OS X

I am not able to build Moonlight application on MAC OS X. the error sates: Framework "Moonlight/Silverlight 3.0' not installed. Can anyone help me out with this
1
vote
0answers
491 views

Mono: Soft Debugger/MonoDevelop + Embedded Runtime

I'm trying to debug my managed assembly that's being loaded in native app. I've enabled Run With Custom Command Mono Soft Debugger in MonoDevelop, and I'm succesfully connecting with my app. However, ...
1
vote
0answers
200 views

MonoDevelop debugging error

I've recently changed to Ubuntu 11.10 (from Windows Vista).I use mono (2.8.5) as my IDE (C# VS.net before) to program. As a quick test I want to make a console program with the following code: using ...
1
vote
0answers
204 views

Debugging moonlight firefox plugin in linux using gdb

I am trying to debug the default libmoonplugin.so added to firefox in gdb on ubuntu platform. I am able to assign a breakpoint but get following error when breakpoint hits: Program received signal ...
1
vote
0answers
166 views

IKImageView issue on 10.5.8

I am using Monobjc and Mono to develop an application where the user can zoom in on images. The very first image shows up fine. But when the user navigates to the next image, it shows up blank with a ...
1
vote
0answers
167 views

Exception on System.Drawing.GDIPlus when built for Mac App Store

I posted this on the mono forums with no luck: The following code is causing me some headaches: private void MyMethod(string Filename) { Bitmap bmp = null; try { // ...
1
vote
0answers
282 views

MonoTouch: WebConnection crash on resume

I have been experiencing the following crash while using MonoTouch on an iPad. I have tested on iOS 4.2+ and it seems to happen on all versions of iOS. This is a very difficult one to reproduce so I ...
1
vote
0answers
140 views

Some exceptions are not being caught correctly in an embedded Mono runtime

We are using the embedded Mono runtime in a C++ application. Tested on Windows x86 and Mono 2.11 Scripts are executed by mono_runtime_invoke. When an unhanded exception occur in script-space it will ...
1
vote
0answers
354 views

stunnel https gets redirected to http

I have a Web service listening on port 8081 (it's a ServiceStack REST Web Service running on mono, if that helps). I am trying to secure it using stunnel, but the problem is as soon as I connect to ...
1
vote
0answers
223 views

Upgrade MySqlConnector .Net version 6.3.7+ crashes Mono 2.10.2 with: The assembly name is invalid

I have an ASP.Net site working well with MySql Connector.Net (MySql.Data.dll version 6.3.6). However, because of a bug in the version I need to move to 6.3.7 (or 6.4.4). However, when I install ...
1
vote
0answers
391 views

UiTableView not showing, GetCell not being called

I have the following code set up: TableView = new UITableView(); TableView.Source = new DataSource(); m_MainScroll.Add(view); // scrollview area TableView.ReloadData ...
1
vote
0answers
340 views

Monodevelop compiler crash

I'm trying to get Mono to work on OSX, but i'm getting a strange error when trying to compile. I get one error The compiler appears to have crashed. Check the build output pad for details. The ouput ...
1
vote
0answers
40 views

How to install Mono using script on MacOS?

I want to deploy my console application developed on Mono to Mac OS. Has anyone know how to install mono using some script on Mac OS? any help will be appriciated. Thanks, Arvind
1
vote
0answers
364 views

Mono.Webkit (webkit-sharp), access c# objects, functions from javascript

I wrote a simple Gtk Application with a Webkit Browser Widget (WebView) included. I want to access C# Objects (or C# functions) with Javascript in this Application.
1
vote
0answers
75 views

Best methods for providing multi-language access to an application platform

I'm developing an open-source cross-platform application platform written in .NET/Mono, Now I'm struggling to grasp the problem of people wanting to use the framework through non CLI languages e.g. ...
1
vote
0answers
119 views

Mono “NetDataContractSerializer.Serialize”

I'm getting following exception System.NotImplementedException: The requested feature is not implemented. at System.Runtime.Serialization.NetDataContractSerializer.WriteStartObject ...
1
vote
0answers
170 views

Mono DirectoryInfo for network share

I wrote a quick console app in VS2010 to copy a file from a network location to a specified location on disk. The program works fine on Windows but when I copy it into the Mac and execute it against ...
1
vote
0answers
436 views

Castle Windsor 3.0 Beta 1 Running in Mono

I am attempting to use Windsor 3 Beta 1 in Mono 2.6 and I am encountering a few issues. (Note that my tests all pass while running Windsor 3 Beta 1 on .Net 3.5) Initially I tried the .Net 3.5 ...
1
vote
0answers
554 views

Program does not contain a static 'Main' method suitable for entry - Occasional error

This question has been asked, but none of the answers resolved my problem. I get this error only occasionally, like after opening my solution for the first time. I am using Monodevelop, and compiling ...
1
vote
0answers
115 views

Proving My Coroutines Work

I just wrote a coroutine (as an exercise) implementation based on Mono Continuations (very weird experience). What are some ways / approaches that I should take to prove its correctness?
1
vote
0answers
631 views

System.Net.WebException: Error getting response stream (ReadDone2)

I'm getting to following error when I try to port my code over to mono. It works fine in windows and it even compiles in Linux. When I'm working with the HttpWebRequest(a button calls a method that ...
1
vote
0answers
406 views

Compiling MonoDevelop from source error

After a long night of compiling... allot of dependencies from source, I get the following error when trying to compile MonoDevelop under CentOS 5: /opt/mono/bin/gmcs -debug -codepage:utf8 ...
1
vote
0answers
54 views

subsonic2.2 is generating empty classes for all my mysql tables

I'm having some problems to run Subsonic under mono. Everything seems to work fine (no error output), but at the end sonic.exe generate only empty .cs class for all my tables. Any ideas about what is ...
1
vote
0answers
579 views

Cherokee skips fastcgi-mono-server4 running asp.net MVC 4.0

My problem is that when I run an API with cherokee and mono, cherokee skips the fastcgi-mono-server and says 404 not found, instead of returning the data from mono-server. I followed this tutorial of ...
1
vote
0answers
312 views

MonoXNA Help (Mac)

I am trying to compile the Marblets sample XNA project to run on mac with monoxna. I have managed to compile the monoxna library and am now using. When I can also build Marblets without errors. When I ...
1
vote
0answers
2k views

mono ./configure --host=arm-linux?

i tried some cross-compiling mono (2.8) with the ./configure --host=arm-linux option, running on an x86 ubuntu. sometimes i get this error: checking for arm-linux-gcc... gcc checking for C compiler ...
1
vote
0answers
231 views

SIGSEGV in Mono 2.6.7 running Denian Lenny

I recently installed mono 2.6.7 on my debian lenny and I am trying to run a minecraft server. Everything I run the mono command i get the error from below: Stacktrace Native stacktrace mono ...
1
vote
0answers
223 views

USB Stick OS that can run .NET (or Silverlight)?

I'm doing an experimental project where I just need to be able to boot off a USB stick and run a .NET console app. The "boot" is important since the machine should be a dedicated appliance for ...
1
vote
0answers
344 views

Post Processing of dll using Mono Cecil

I've been using Mono Cecil to do some post processing of some dlls because we want to modify the event codes that are generated by VS2010 compiler and modify them to look like the ones generated by ...
1
vote
0answers
109 views

PrintUnixDialog and mono

I'm new to Mono and I do not understand how the PrintUnixDialog and the PageSetupUnixDialog work I have searched it on google for hours but I haven't found anything So if you know a good tutorial ...
1
vote
0answers
295 views

How to create Package in mono 2.8 its need 'mono.exe'

I am using "Mono Tools for Visual Studio - 2.8". When I am creating Package of mono it requires 'mono.exe' but it does not exist on my system. How can I get mono.exe OR there is any other way to make ...
1
vote
0answers
357 views

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 ...
1
vote
0answers
287 views

Developing Monotouch and XCode in parallel - how to set it up

Would it make sense to develop an app in Monotouch and With XCOde in parallel or with Monotouch as a prototype. (I would be learning both while developing). Since both use the same ...
1
vote
0answers
216 views

MySQL ExecuteNonQuery hanging in mono

I am in the process of moving from Visual Studio to Mono. I have a query which dumps about 190000 rows of a select statement into a a text file which I process from c#. Normally the whole thing goes ...
1
vote
0answers
172 views

In MonoDevelop, how do I specify the target directory to be used when generating a package?

If I right click on the "Tarball" project, and go to Options > Files, I see some like this: There are a couple of problems here: "pkg-config folder" uses /usr/local/lib/pkgconfig, instead of ...
1
vote
0answers
492 views

Visual Studio 2008 ASP.NET MVC 1 (3.5 framework) Application to Mono 2.4.4 on Apache 2.2.14-5 on Ubuntu 10.04 Deployment

This is my scenario: Development Environment: Visual Studio 2008, Windows 7 Deployment Environment:; Ubuntu 10.04, Apache 2.2.14-5, Mono-runtime 2.4.4.(mono-server2 for ASP.Net 2.0 applications) I ...
1
vote
0answers
1k views

ASP.NET Ajax With Mono

I have just installed Mono on my server aspx pages are working fine however when i try to run ASP.NET Ajax application i am having the weird error popping up. Error: ASP.NET Ajax client-side ...
1
vote
0answers
66 views

Porting WISA stack to Linux + Mono

We're currently running a Windows/IIS/MSSQL/ASP.Net3.5 stack for internal development and it's great, mostly for the developers who are enjoying the tight integration with Visual Studio etc. Problem ...
0
votes
0answers
5 views

Data synchronization and network availability

I've spent several hours reading client/server data synchronization posts, but have not quite found what I'm looking for. I have a proprietary database server that I can access through an HTTP ...
0
votes
0answers
25 views

Unity3D load an not exist DLL file , still work but no effect to the result

I tried to integrate my own c++ plugin with Unity3D project. But it doesn't work. So i wrote some small code to test, I found some strange problems, make me #$%#@$^@#$^#^ First I create a small dll ...
0
votes
0answers
16 views

What is the alternative to COM/active-x in mono?

My application is all Windows, no IE. VB6, my current implementation, creates Active-X/COM for user controls and .dlls, but I have total control over both use of and implementation of these (.ocx and ...

1 3 4 5 6 7 22