Tagged Questions

3
votes
2answers
157 views

Is support for ASP.Net in mono being discontinued?

I was listening to a recent stack exchange podcast episode 11 and sometime during it Joel stated that ASP.Net was officially no longer supported by mono. I've been looking around and haven't been ...
2
votes
0answers
207 views

Could not launch the web server.The “xsp4” web server cannot be started. Please ensure that it is installed

I am new to using Monodevelop. I have installed Monodevelop 2.8.1 using a ppa (http://ppa.launchpad.net/ermshiperete/monodevelop/ubuntu) which works real fine except that I cannot run a web app from ...
2
votes
2answers
606 views

XSP4 from Mono 2.10 not working under Windows

I'm trying to run any application on XSP4 web server using new Mono 2.10 (downloaded from windows installer bundle). I have already tried to run simple ASP.NET MVC2 project and ASP.NET. Both were ...
2
votes
1answer
280 views

Any issues running a daemon via XSP2?

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 ...
1
vote
2answers
569 views

Is it possible to host a WCF service using Mono's XSP Web server?

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 ...
1
vote
3answers
299 views

Does the XSP2 web server always uses Mono?

I am not sure if XSP2 is using mono or .NET in my Windows box. How can I be sure?
1
vote
1answer
319 views

HttpHandler to handle all kinds of URL's in Mono Apache/XSP in order to build a REST service

I want to develop my own REST service, so I've created an IHttpHandler that is configured with verb="*" and path="*", the the application in ~/MyRESTsrv/ will handle any derived URL. This approach ...
1
vote
1answer
347 views

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 ...
0
votes
1answer
317 views

Running XSP4 in MonoDevelop 2.6

After a fresh install of Ubuntu 11.10, which comes with Mono 2.10, I've found myself in a bit of a pickle: I can't run ASP.Net 4.0 projects, even though I have XSP4 installed. It's almost as if it ...
0
votes
1answer
133 views

using .asmx using lighttpd and mono fastcgi

I have deployed a web service to a ubuntu server running lighttpd and fastcgi-mono-server2. The .asmx page loads correctly but when I test the method I get a 404. My web service is called ...
0
votes
1answer
480 views

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

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 ...
0
votes
3answers
102 views

Whats wrong with this ASP.NET rewrite?

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 ...
0
votes
2answers
687 views

Mono's XSP webserver can't find MySql.Web.dll on Linux

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 ...
0
votes
1answer
289 views

url rewriting for asp.net under mono xsp2

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 ...
0
votes
4answers
1k views

Sample web Page using Mono and XSP on windows box

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 ...