vote up 8 vote down star
5

Trying to get MVC running on Mono 2.4 (which is possible, according to some threads here) without much luck. I can't get past this:

Compilation Error

Description: Error compiling a resource required to service this request. Review your source file and modify it to fix this error.

Compiler Error Message: : ** (/usr/local/lib/mono/2.0/gmcs.exe:5232): WARNING **: The class System.Web.Management.WebRequestErrorEvent could not be loaded, used in System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
~/Global.asax

Show Detailed Compiler Output: //etc

I've added System.Web.dll (and literally every reference in the project) to the bin folder - still no go.

Any ideas?

LINKS:

Miguel de Icaza saying it's possible: Twitter SO 1 SO 2

flag

61% accept rate

4 Answers

vote up 6 vote down check

You shouldn't need to compile MVC (or Mono), but you will need at Mono 2.4, which is available on the Mono download site.

The only DLL you need is the System.Web.Mvc.dll. The easiest way to handle this in VS would be to set "Copy Local" to true for that assembly. Don't copy local any of the other System.* references.

link|flag
Already tried with only that dll - same error. Will try again though. – hb Mar 30 at 17:01
I tested this with the Mono 2.4 / openSUSE 11.1 VMWare image from the Mono site. It already has all of Mono installed and configured. If you're really missing System.Web on your machine, you may need to make sure you installed all dependencies. Do any other ASP.NET apps work with the xsp2 command? – joseph.hill Mar 30 at 17:07
Yeah, normal ASP.NET works. Does mono need any additional configure parameters to make this work? >> WARNING **: The class System.Web.Management.WebRequestErrorEvent could not be loaded, used in System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a – hb Mar 30 at 17:08
Update: the site works under xsp2; not under fastcgi-mono-server2 or mod_mono – hb Mar 30 at 17:14
Woot, it's working now. For some reason it wasn't executing the right mono server... had to kill everything mono and then restart apache. Go figure. – hb Mar 30 at 17:25
show 5 more comments
vote up 0 vote down

What about any DLLs that System.Web references.

link|flag
vote up 0 vote down

According to the mono status page for System.Web, the mentioned class isn't implemented yet. Maybe you could include a link to the threads that say it is possible to get it running?

link|flag
Added links; I'm compiling from SVN at the moment... hopefully this will work. – hb Mar 29 at 16:56
vote up 0 vote down

I have no idea of ASP.NET MVC or Mono.

But, it looks like the DLL should be in GAC or similar place (not sure what terminology is used in case of Mono). The DLL has publickeytoken, which makes it a candidate for GAC.

Does this help?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.