mono

Mono XSP ignores <location> directive in Web.Config

I'm porting my ASP.NET application to Mono. I built it from SVN trunk under Debian 5.0. I allow anonymous access to Logout.aspx and styles.css using Web.config directives: <location path="Logout.aspx"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> <locati...

In MonoDevelop, how do I include all assemblies from a package as references?

I want to include all the assemblies in the GtkSharp package. Right now, I have to find every assembly and include it individually. Is there any way to simple include all assemblies in the GtkSharp package? ...

What does the MaxOccurs property of Mono.GetOptions.OptionAttribute do?

Mono Documentation The documentation is missing here. What does it do? ...

Why is Mono.GetOptions obsolete?

The Mono.GetOptions package has been made obsolete, but doesn't seem to have anything to replace it. The docs point to NDesk.Options, but NDesk's own webpage claims that Options is unstable. Why was GetOptions made obsolete, and what is planned to replace it? ...

What's the fastest IPC method for a .NET Program?

Named Pipes ? XML-RPC ? Standard Input-Output ? Web Services ? I would not use unsafe stuff like Shared Memory and similar ...

ScriptManager causes server error

I'm playing around with MonoDev on my mac and wanting to see how well it can run basic ASP.NET applications which I've worked on. I chose a very basic site, it's got a handful of ASP.NET pages, all of which inherit nested master pages and some ASP.NET AJAX stuff. The project is .NET 2.0 and I have the web.config set appropriately for AS...

Mono and ASP.NET Authentication

Does anyone know how to get to work the authentication mechanism configured using Web Site Administration Tool under Linux running Mono? Is it even possible? ...

Missing "ADODB" assembly with Mono?

Hello, I'm trying to port some ASP.Net code to mono. I am testing it using xsp2. I compile it with Visual Studio also before running it with xsp2. Whenever I go to a practically blank page in my application I get Parser Error Message: Assembly ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A not found I ha...

ASP.NET MVC + Castle ActiveRecord + elmah on Mono 2.6 on windows 7

I am trying to get xsp2 to run my asp.net mvc application, but I get the attached error message with no debug information. Nothing useful is produced if I run xsp2 with --verbose. The app runs fine under IIS on Windows Vista and Windows 7 and VS's built in webserver. I know others have had success with this, so I'm hoping that I just...

mod_mono configuration in window for apache web server

hi, how shall i configure the mod_module in apache web server on windows. sameer. ...

compiling the web app in monodevelop

hi, i installed the mono develop and mono 2.6 on windows, when i compile the app im getting this exception. can any on help me to solve the issue, Registering application: Host: any Port: any Virtual path: / Physical path: C:\Documents and Settings\sameer\My Documents\Projects\testMonoWeb\testMonoWeb\ pp11:Mono...

Gtk equivalent for winforms BindingSource

Does anybody out there know of a Gtk equivalent for a System.Windows.Forms BindingSource? I'm trying to get a windows based project to work under a gtk environment and can't use the Windows.Forms dll for this. So does anybody know of a BindingSource replacement either in mono or a third party dll? (I've looked at the gtk-databindings pr...

Mono 2.6 released

Having Mono 2.6 released what is the current status on scalability , portability of ASP.NET application and desktop application on mono. ...

Uniquely identifying a computer using .NET/Mono?

I need a way to uniquely identify a computer using .NET that works in both Windows and Linux. The methods used in both operational system do not have to be the same. That is: I can have an approach for Mono running on Linux and another approach for .NET running on Windows. I took a look at another similar question on SO and it seems th...

Question about using C# to talk to Hadoop FileSystem.

Currently my application uses C# with MONO on Linux to communicate to local file systems (e.g. ext2, ext3). The basic operations are open a file, write/read from file and close/delete the file. For this, currently i use C# native APIs (like File.Open) to operate on the file. My Question is: If i install Hadoop file system on my Linux bo...

DLLImport crash in Mono (linux): icall_wrapper_mono_marshal_free

I'm stucked with a problem with Mono Interop in Linux. I have a native shared library (made in Lazarus) that I need to use in a C# assembly. The shared library is used by a Mono C# assemblie on Windows and on Linux. The assembly loads the shared library via DllImport at runtime, and calls an exported function that generates a file and r...

Mono(non-Windows) Report Writing?

Hello, we are making an application to run on both Mono and .Net. The application is web based, so it uses ASP.Net. We are now trying to find some kind of reporting software. We would prefer if there was a designer that end users(non-programmers) would be able to use like Crystal Reports. Currently, we are not finding anything that lo...

Program crashes if returned value is null

hi, i am trying to retrieve some data from mysql(c#,mono), the problem is that if the returned value is null the program crashes, i know it has to do something with the returned null value, because if i want to retrieve something that is in the database it works,can anyone help me with this? The code: MySqlConnection dbcon; dbcon = new...

Mono 'asmonly' option

I created a simple mono executable using MonoDevelop that prints "hello world". I wanted to try the AOT 'asmonly' option. So: [root@localhost Debug]# ls abc.exe [root@localhost Debug]# mono --aot=full,static,asmonly abc.exe Mono Ahead of Time compiler - compiling assembly /home/alon/Projects/abc/abc/bin/Debug/abc.exe Code: 1538 Info: 5...

Mulitple Y axis on MedSphere graph?

Is it possible using the MedSphere graph2d to have multiple y axis so that you can plot more than one plot with independently scaling y axis e.g. so I can plot a percentage ranging from 0 to 1 and a line plot with data that has no upper limit and have both graphs shown without one getting squished down to a straight line? or if its not ...