Tagged Questions
1
vote
1answer
31 views
Hosting SeviceStack on Mono without a webserver
As I was reading about how to run ServiceStack as a daemon on Linux I was wondering if a webserver such as apache or nginx is needed at all now that servicestack has razor and markdown view egines.
...
1
vote
0answers
31 views
Integration Testing ServiceStack on MonoDevelop(Xamarin)
Hi I'm new to Mono and ServiceStack, and I'm having trouble running integration tests on Xamarin Studios on OSx.
I'm following the examples here AppHostListenerBaseTests.cs, but I can't get the test ...
1
vote
1answer
46 views
Embedding ServiceStack dll to Mono Executable
I''m trying to get a program i wrote in C# to work w/ Mono.
The project is here -- https://github.com/micahasmith/cstatic
I have the build script to "mono make" it set up like so--
dmcs ...
1
vote
1answer
42 views
Servicestack self host app System.TypeloadException when using mono in ubuntu
I am attempting to run my selfhosted servicestack console app using mono in ubuntu.
I am only coming up against this problem when trying to run with mono on my ubuntu server. The application works ...
1
vote
1answer
47 views
When serializing large response, client receives ServiceStack exception, Out of Memory,
I have a ServiceStack RESTful web service on a linux box with apache/mod_mono.
public DataSetResponse Get(DataRequest req)
{
DataSetResponse Response = new DataSetResponse();
...
2
votes
1answer
32 views
Why doesn't the ServiceStack Razor FileSystemWatcher work on Mono + Mac OS X?
ServiceStack's new support for Razor v2 uses a FileSystemWatcher to detect changes to tracked view files and mark them as invalid so they'll be recompiled at the next request.
This is great for ...
2
votes
2answers
65 views
New to C#/Mono, ServiceStack.Redis cannot find reference
I'm trying to build a console app to test out redis/mono communication. I've been hitting a brick wall using Monodevelop 4.0 (Xamarin Studios)+Nuget Port to work with ServiceStack.Redis on mac os.
...
1
vote
1answer
63 views
ServiceStack example on Mono
Working on getting a ServiceStack.NET HelloWorld example up and going on Mono. Stuck at this error:
System.Web.HttpException
Failed to load httpHandler type ...
2
votes
2answers
108 views
ServiceStack with mono on linux
I know nothing about linux or mono. I have web app that I am building in WebMatrix. I've set up simple service with ServiceStack and a cshtml test page. All runs fine on Windows but when I move the ...
1
vote
1answer
59 views
servicestack service on mod_mono / apache not found
I have a simple ServiceStack web service that I have working on my Macbook with xsp. With a browser I can view the metadata page and the service is working.
I just installed mono, mod_mono, xsp on a ...
2
votes
2answers
143 views
ServiceStack-based web site under Mono/Linux: Performance with static content
I'm planning on converting an ASP.NET MVC web site to ServiceStack Razor, with the aim of hosting it on a Linux server.
What would be the best solution for serving the static content of the site? ...
2
votes
1answer
257 views
Xamarin Studio and Mono debug issue with WebPageHttpModule
There's a lot to like about the new Xamarin Studio however every time I run my web project I run into the System.Security.SecurityException - no access to the given key.
If I continue execution and ...
1
vote
1answer
62 views
How to kill fastcgi-mono-server4.exe from a rake file?
I'm working on automated deployment using Rake of a mono asp.net website to ubuntu server with nginx.
As far as I've discovered fastcgi-mono-server4.exe can't be stopped gracefully and must be ...
1
vote
0answers
65 views
Serialization issues with ServiceStack followed by SEGV on mono 2.10.8.1
I'm running Service Stack under Linux / mono 2.10.8.1 and I seem to be encountering some serialization issues where the deserializer is looking for properties on the wrong class. Then null reference ...
1
vote
2answers
134 views
servicestack hello failed to load http handler
I am following the Hello Web Service tutorial on ServiceStack.net. I get the message below when trying to access the service:
Failed to load httpHandler type ...
2
votes
1answer
789 views
Mono 3.0, Ubuntu 12.10, Nginx and ServiceStack
According to the ServiceStack website, it should be easy to get ServiceStack up and running on Linux with Mono. I have installed nginx, mono 3.0 and fastcgi on the system (Ubuntu 12.10). I have used ...
1
vote
0answers
165 views
Could not load type 'System.Runtime.Serialization.Json.DataContractJsonSerializer'
I am new to mono/linux and I've tried to host my existing asp.net mvc3 website on ubuntu/apache2 using mod_mono. Everything goes ok except the calls to a ServiceStack service which seem to fail when ...
1
vote
2answers
213 views
Is selfhosting appropriate for small web projects in both Nancy and ServiceStack?
Both Nancy and ServiceStack have ability to self-hosting. I want to use one of this frameworks to build a web service with Linux and Mono. I am expecting few concurrent connections. Unfortunately Mono ...
1
vote
1answer
1k views
Mono 3.0.0: Could not load file or assembly: System.Web.Extensions.dll, Version=4.0.0.0
I am hosting a ServiceStack web service in Apache with mod-mono, I have mono-3.0.0, and xsp-2.10.2.
I hosted the hello world example targeting .Net framework 2.0 and using mod-mono-server2, and it ...
3
votes
1answer
293 views
SSL on Service Stack
Is SSL supported on Service Stack on Mono?
I only have access to a mac and the instructions I found here ask you to use a windows tool to create a pvk file:
...
1
vote
1answer
312 views
Razor.ServiceStack - Views not rendering, just default “Snapshot”
I've setup a site using http://razor.servicestack.net/.
I've created several views and matching services with an example as follows:
Service Example:
using ServiceStack.ServiceHost;
using ...
2
votes
1answer
1k views
Host ServiceStack, MVC3 or MVC4 on mono or windows and what is the state of mono
I am trying to decide what stack to use for a new web based backoffice system. We develop in C# and are going to use ServiceStack and/or ASP.NET MVC. Our customer prefers hosting on a Linux server, so ...
20
votes
2answers
6k views
What is the best way to run ServiceStack on Linux / Mono? [closed]
Listed on the ServiceStack website it shows that ServiceStack can run on Mono with either:
XSP
mod_mono
FastCgi
Console
What are these different configurations and which is preferred for Web ...
1
vote
0answers
354 views
stunnel https gets redirected to http
I have a Web service listening on port 8081 (it's a ServiceStack REST Web Service running on mono, if that helps). I am trying to secure it using stunnel, but the problem is as soon as I connect to ...
