We want to run a daemon that exposes itself via ASMX, using Mono 2.0 (or later). Instead of dealing with the ASP.NET hosting APIs, we're thinking about just starting a daemon thread in the Application_Start event. XSP2 shouldn't restart the appdomain, so our daemon will be safe.
Are there any downsides to this (besides being a bit odd)?...
Hey,
I'm attempting to get my first ASP.NET web page working on windows using Mono and the XSP web server.
I'm following this chaps example. The first part of his example works very well with the latest version of mono. however the web part seems to fall over with the following error
'{Path Name}\Index.aspx.cs' is not a
valid vir...
First of all I'm sorry for such a question, I look over the internet and google searches but there so many different ideas out there. In a mail-list I actually see that people claim that one need to buy Mono license to use it in a commercial tool.
Can I use Mono XSP in a commercial tool, does licensing permits that?
I'm not good with r...
Is it possible to debug a website running under xsp on windows?
I would like to attach to the process from visual studio if that is possible.
I modified my xsp2.bat file to enable debuging
@"C:\PROGRA~1\Mono-2.4\bin\mono.exe" --debug=mdb-optimizations "C:\PROGRA~1\Mono-2.4\lib\mono\2.0\winhack\xsp2.exe" %*
but it doesn't seem to help.
...
Hi
It seems I am one of the few trying to get Mono's mod_mono to run on httpd on Fedora 10.
Mono is installed and the httpd is configured to use mod_mono.conf
But when I do this:
service httpd start
I get this error:
Starting httpd: [crit] (13)Permission denied:
Failed to attach to existing dashboard,
and removing dashboard file ...
Hi,
Any hints on how to put the blocks of xsp working? I managed to build them, but I cant seem to use xsps generators on my pipelines. Is this still available? Thanks
greetings
...
I am porting an existing ASP.NET MVC applicationto Mono. I am actually trying to make it run under Fedora Linux 11.
After a few tweaks, I have managed to make the solution compile in MonoDevelop.
While trying to execute it with xsp web server, I get the following output:
Handling exception type ConfigurationErrorsException
Messag...
I'm trying to do some asp.net development on a Mac right now and i'm having trouble finding a urlrewriting library that works fine under mono (and the xsp2 webserver)
Of course you could write your own, but i have a bunch of rules already created and i dont want to rewrite(!) them in code if dont have to.
i've used UrlRewriter.Net in t...
I run an apache 2.2 web server to serve asp.net web applications with mod_mono. It works fine. But mono-xsp2 service running too..
Does mod_mono need xsp to work or to work better?
I am asking that because xsp-server start running automatically on boot time. And I couldn't be sure if it is needed or not.
Here is a screenshot of the p...
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...
Hi,
i just exported my project to my new imac an loaded my solution into monodevelop.
After the successfully compilation i started the project, and i always getting the same error.
** (/Library/Frameworks/Mono.framework/Versions/2.6.1/lib/mono/2.0/xsp2.exe:1576): WARNING **: The following assembly referenced from /private/var/folders...
I'm trying for a week to make my XSP server work with simple static content: html-pages, js-files, gifs, jpegs etc... No ASP.NET. And this server always randomly crashes while navigating this pages with browser.
My Environment is: Mono 2.6.1, Windows Vista. I also tried to build XSP on linux (with Novell's make-files) but same result.
...
Hi,
I want to develop my own REST service, so I've created a HttpHandler that is configured with verb="" and path="", the the application in "~/MyRESTsrv/" will handle any derivated URL.
This approach works good in IIS7 with "integrated mode" and apparently in IIS6 if you map all the extensions to "aspnet_isapi.dll".
Is this possible ...
Hello, I'm working on getting my ASP.Net project working on Linux. I've been testing my code using XSP on windows, but now I am trying to make sure that I can develop and test on Linux as well. To that end I've gotten Ubuntu running and have MonoDevelop and MySQL running. I've downloaded the latest MySQL Connector/Net and I think I have ...
I am not sure if XSP2 is using mono or .NET in my Windows box.
How can I be sure?
...
Actually its the mono version of asp.net, XSP.
In my begin request function i check the url and rewrite when necessary. In one case i do
context.RewritePath("~/App_Data/public" + path);
When i try to request images or anything i get a 404 instead of the content. Why?
...
I copied all my resource into the main path with my aspx files.
I also copied my js folder in there. With linux my webpage loads /test.js but not /js/jquery.js. How do i make mono find the path to query?
-edit-
Nevermind, i found a solution with rewrite. ~/App_Data doesnt work though.
HttpContext.Current.RewritePath("/App_Data/" + fn...
I'm trying to run a .NET web application through Mono. I'm using Mono Tools 2.0 beta on VS 2008 and trying to debug locally (directly on Windows).
When I just "Run in Mono", the application launches fine -- even though I get a fatal exception which I'll deal with once I get debug mode working.
But when I "Debug in Mono", I see the Mono...
I have made a very simple Asp.net web site with a WCF service - "Person.svc" - that runs fine when hosted on Asp.Net development server(visual web developer 2010), but if I host on Mono's XSP 2 and access some parse error is thrown. Can WCF services live inside a XSP Web site?
...
Hey folks,
I´m currently trying to get a MVC 2 (.NET 4.0) application running on Mono, but I´ve got some problems with the XSP server.
Everything is fine, when I press the "Run" button in MonoDevelop. My application starts using the correct version of ASP.NET:
Mono Runtime Version: 2.8 (tarball Tue Oct 5 14:16:19 MDT 2010); ASP.NET Ver...