Questions tagged [xsp]

XSP is a simple, standalone webserver written in C# that hosts ASP.NET's System for Linux and other Unix operating systems. As well as running on the mono runtime for Linux it also runs on the .NET runtime, making it usable as a light weight web server on any .NET supporting platform. XSP is also a term for the eXtensible Server Pages technology in Apache Cocoon.

120 questions
2
votes
1 answer

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

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…
David
  • 13,133
  • 1
  • 30
  • 39
2
votes
1 answer

Mono + MVC 4 + .NET 4.0 + nginx 404 (also with XSP)

On a testing box: root@ubuntu:/var/www# mono --version Mono JIT compiler version 3.0.6 (Debian 3.0.6+dfsg-1~exp1~pre1) Copyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com TLS: __thread SIGSEGV: …
StrangeWill
  • 2,106
  • 1
  • 23
  • 36
2
votes
0 answers

mono MVC3/MVC4 - libraries still required

Ubuntu 13.04. Using the mono from the experimental branch (3.0.6 (Debian 3.0.6+dfsg-1~exp1~pre1);). I'm still being required to upload these five DLLs to the BIN folder for my MVC…
Brad
  • 1,684
  • 4
  • 20
  • 36
2
votes
1 answer

How to profile my web application under mono/xsp?

So I have an ASP.Net web application that runs under mono/xsp4 (in development, anyway). How can I profile my web app to see what is causing it to be slow?
Earlz
  • 62,085
  • 98
  • 303
  • 499
1
vote
2 answers

Porting C# Windows GUI to C# web app : how to get it work out-of-the-box for Win, Mac & Linux?

I would like to rewrite an application that currently works as a Windows GUI in C#. The problem is, it works well on Windows, but is not adapted for Mac and Linux because of GUI issues with Mono. So my idea, was to continue with C# (needed because…
OlivierB
  • 455
  • 2
  • 6
  • 18
1
vote
4 answers

how to suppress the enoying dialog boxes when developing xPages?

Anyone know how to remove or supress the enoying dialog boxes when developing xPages If you are just making small xpages application you might not see these very often, but the more complex your xPages get you see these all the time. specially when…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
1
vote
2 answers

XSP4 could not start, missing xsp4 assembly

I have a mono (2.10.7) instance running and I'm trying to code some ASP.NET MVC 3 application but I just hit a wall I don't know how to pass. First, I was getting an error about XSP4 not being found (launching a simple app from MonoDevelop 2.9.1…
Hugo
  • 6,244
  • 8
  • 37
  • 43
1
vote
3 answers

Developing ASP.NET MVC using MonoDevelop on MAC

I am developing a web app using ASP.NET MVC 2.0 in MonoDevelop. I have latest Mono 2.10 and MonoDevelop 2.4.2 and I am running them on Mac. According to mono’s release notes, it should support ASP.NET MVC 2.0. However, I found MonoDevelop’s project…
frostred
  • 183
  • 2
  • 8
1
vote
1 answer

Referencing log4net in the App_Code folder of an xsp4 hosted ASP.NET application mono

I'm porting an ASP.NET app to mono 2.8.2 using the openSuse 11.3 VM image available on mono-project.com. The app is running it under xsp4. A .cs file in my App_Code folder is not finding log4net.dll which is in the bin folder. I am using the release…
Justin Dearing
  • 14,270
  • 22
  • 88
  • 161
1
vote
2 answers

Running websharper.ui.next on OSx complains with a mcs error

I've got a websharper project that runs flawlessly on windows. However it only compiles flawlessly on mac but can't be run. The webserver complains that it can find a file (doesn't name it) and reading the stacktrace it seems to be the C# compiler…
Rune FS
  • 21,497
  • 7
  • 62
  • 96
1
vote
2 answers

XPages: Handle the parameters in SSJS send by XSP.partialRefreshPost from Client

Can I use an SSJS function if I call an XSP.partialRefreshPost in Client? Where should I define this SSJS function - directly in XSP.partialRefreshPost or in the refreshed object? Maybe all the steps above are wrong and I should use pure AJAX? The…
Dexter
  • 11
  • 2
1
vote
1 answer

Preview an ASP.NET .CSHTML file in XSP

Is there a way to force XSP on Mono to parse .cshtml files in order to be able to only preview them before doing the routing? Could the setting be forced? Currently, the server only forwards the file for download and does not process it. Running…
ax1mx2
  • 654
  • 1
  • 11
  • 23
1
vote
3 answers

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?
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
1
vote
1 answer

Process.Start issue from .app on OSX (xsp)

I made an application with Mono. Inside this app I'll start the xsp4 WebServer with this command: string exe = "xsp4"; string args = "--root " + Path.Combine(Path.Combine(FSys.AppPath, "support"), "webapp"); args += "…
Marco
  • 656
  • 9
  • 28
1
vote
1 answer

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 works good in IIS7 with "integrated mode" and…
vtortola
  • 34,709
  • 29
  • 161
  • 263