xsp

What are the first steps for tracking down a exception triggered in the mono asp.net libraries?

我们两清 提交于 2020-01-15 08:25:22
问题 I'm curious if there are any asp.net mono gurus who could give pointers on where to start debugging what may be an error in the mono libraries (perhaps a version mis-match?). I'll start with the details, and then mention what I've found so far. Version information: Mono Runtime Version: 2.10.8.1 (Debian 2.10.8.1-5ubuntu1); ASP.NET Version: 4.0.30319.1 The stack trace: System.InvalidCastException: Cannot cast from source type to destination type. at System.Web.UI.ScriptManager

How to fix SIGSEGV which prevents MVC application running in Mono

我们两清 提交于 2019-12-25 03:04:09
问题 ASP.NET MVC application is installed in Debian server using Apache and mod_mono. Trying to start it causes SIGSEGV exception in Mono. Apache error.log contains [Wed Mar 06 22:07:13 2019] [notice] Apache/2.2.22 (Debian) mod_mono/3.12 configured -- resuming normal operations Listening on: /tmp/.mod_mono_server4 Root directory: / Stacktrace: [Wed Mar 06 22:07:35 2019] [error] (70014)End of file found: read_data failed [Wed Mar 06 22:07:35 2019] [error] Command stream corrupted, last command was

XSP Configure fails due to mono module dependancy

喜夏-厌秋 提交于 2019-12-22 07:06:18
问题 I have mono installed in my RHEL 5 machine which is visible as follows: which mono /usr/local/bin/mono mono -V Mono JIT compiler version 2.10.2 (tarball Wed Oct 16 10:33:49 CDT 2013) Copyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com TLS: __thread SIGSEGV: altstack Notifications: epoll Architecture: amd64 Disabled: none Misc: softdebug LLVM: supported, not enabled. GC: Included Boehm (with typed GC and Parallel Mark) When i try to run the configure script for xsp, it

Huge delay on first browser-request to Mono XSP hosted web-application

戏子无情 提交于 2019-12-21 18:14:30
问题 We are using the Mono (2.10) XSP4 webserver to host an ASP.Net MVC3 web-application running on an open-embedded Linux (ARM). When starting XSP4 it takes some seconds until it is ready and accepts requests. No problem with that so far. But when the first request from a browser / website-visitor is made XSP4 uses all CPU it can get for about 55 seconds until the webpage is (successfully) shown in the webbrowser. This happens after each start/restart of XSP. My first thought was that this is the

Huge delay on first browser-request to Mono XSP hosted web-application

旧街凉风 提交于 2019-12-21 18:12:27
问题 We are using the Mono (2.10) XSP4 webserver to host an ASP.Net MVC3 web-application running on an open-embedded Linux (ARM). When starting XSP4 it takes some seconds until it is ready and accepts requests. No problem with that so far. But when the first request from a browser / website-visitor is made XSP4 uses all CPU it can get for about 55 seconds until the webpage is (successfully) shown in the webbrowser. This happens after each start/restart of XSP. My first thought was that this is the

Is it possible to get an ASP.NET MVC 3 project working under Mono 2.10?

青春壹個敷衍的年華 提交于 2019-12-20 09:05:16
问题 Mono 2.10's release notes suggest support for ASP.NET MVC 3.0 and Razor using XSP. Upon opening a newly created ASP.NET MVC 3.0 default project (created with Visual Studio 2010) in MonoDevelop 2.4.2 (Mac OS X), the following DLLs are missing: System.Web.Entity System.Web.Helpers System.Web.Mvc System.Web.WebPages All of which I replace with DLLs obtained from my Windows installation. The project builds, but I receive the following error message when trying to debug the project: Adding

Can XSP run ASP.NET 4.5?

不问归期 提交于 2019-12-18 06:17:05
问题 I've been trying to launch MVC5 (depends on .NET 4.5) under Mono for days now and with no success. Configuration Clean install of latest Lubuntu No previous XSP/Mono Compile and install XSP/Mono from latest git sources Mono version: 3.2.7 Problem When I run xsp4 on any folder it shows Version Information: 3.2.7 (master/1eef047 C nov 28 18:16:30 EET 2013); ASP.NET Version: 4.0.30319.17020 . Latest Mono version supports .NET 4.5, does XSP? If so, how can I make sure that it is using 4.5 instead

No package 'mono' found when installing XSP

若如初见. 提交于 2019-12-13 02:26:44
问题 I am trying to get Mono working on nginx with fastCGI. I have done a fresh install of CentOS 6, and performed all the updates. I then installed nginx, and opened up the firewalls I needed. I can now see the simple HTML page from nginx without a problem. I then followed this tutorial for installing Mono via Git : https://stackoverflow.com/a/13424880/221456 libgdiplus installed fine mono installed fine xsp, when I run autogen (with the prefix), gives me this error : checking for MONO_MODULE...

TypeLoadException on asp.net/xsp/mono on debian/opensuse

情到浓时终转凉″ 提交于 2019-12-12 05:09:39
问题 When i reset apache and load my website i get the first error below. I have no idea what the problem is. If i reload the page again (without restarting apache) i get the 2nd error, probably because the first error occurred and BaseUser is the first class/func that Application_Start uses. Why am i getting this load exception? Whats messed up is i tried using mono's VMWare img to debug it and i got the very same exception (until i restarted which now refuses to give me anything but 404 errors).

How to run MVC application with newer Mono in Debian 9.3

痞子三分冷 提交于 2019-12-11 23:24:49
问题 Latest release of Mono was installed in Debian 9.3 using cd /usr/local/src wget https://github.com/mono/libgdiplus/archive/5.6.1.tar.gz tar -xvf 5.6.1.tar.gz cd libgdiplus-5.6.1 mkdir /opt/m518 apt-get install libtool autoconf glib-2.0 ./autogen.sh --prefix=/opt/m518 make make install apt-get install git autoconf libtool automake build-essential gettext cmake python git clone --recursive https://github.com/mono/mono.git --branch=mono-5.18.1.0 cd mono ./autogen.sh --prefix=/opt/m518 make make