ServiceStack is a modern, code-first, DTO-driven, WCF replacement web services framework encouraging best-practices for creating DRY, high-perfomance, scalable REST web services

learn more… | top users | synonyms

1
vote
1answer
46 views

Global variable in selfhosted ServiceStack server

I need to have some "global" variables in my servicestack selfhosted server, like myList here: public partial class Main : Form { AppHost appHost; public Main() { ...
1
vote
1answer
27 views

ServiceStack ServiceClient HTTP 206 and Range header

I'm using ServiceStack ServiceClient to write an API wrapper. The API returns HTTP 206 if the number of entities to be returned is too great. Is there a a good way to handle this with ServiceClient, ...
2
votes
1answer
63 views

ServiceStack: Adding routes dynamically

I have not tried this yet, but I would like each module (Silverlight) to register its own routes, rather then adding it in application start. Can routes be added to AppHost after application start, ...
2
votes
0answers
45 views

ServiceStack: SerializationException

I am testing the api created using ServiceStack using SoapUI and when I try to send the required DataMember thru headers, the api returns the correct values. When I try to send the required DataMember ...
2
votes
1answer
78 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 ...
2
votes
1answer
42 views

Does ServiceStack support CORS over multiple origins?

Using the CorsFeature plugin, how can I support multiple origin domains? I'm not talking about the wildcard "*" here. I'm talking about passing in a list of more than one origins: ...
1
vote
0answers
27 views

ServiceStack 3.9.43 JsonSerializer: IncludeNull has no effect on serialization?

In the AppHost public override void Configure(Funq.Container container) { JsConfig.IncludeNullValues = true; SetConfig(new EndpointHostConfig { ServiceStackHandlerFactoryPath = ...
4
votes
1answer
103 views

ServiceStack MsgPackServiceClient fails when fetching data but JsonServiceClient works

I'm playing around with ServiceStack and doing baby steps trying to understand the technology. I've got a very simple setup (complete solution is available for download): Stand alone AppHost using ...
2
votes
1answer
82 views

Pass headers using ServiceStack's Swagger UI

I am trying to add headers in our SS service using the APIMember attribute with ParameterType = "header". Everything seems to be working except the header which is not getting added to the ...
1
vote
1answer
47 views

servicestack with funq - autowiring by convention

I have a service which takes an IMyDependency in its constructor. IMyDependency, MyDependency and the service all live in the same assembly. MyDependency has a single, public, parameterless ...
1
vote
0answers
44 views

Service stack global exception handling

I have an application built with ServiceStack and ServiceStack.Razor. I'm having trouble getting error handling configured the way I want. Here is the goal: HttpError w/StatusCode = 401 or 403 ...
1
vote
1answer
62 views

ServiceStack ORMLite Fluent Configuration

I am looking to create a new project using ServiceStacks OrmLite. I have used EntityFramework in the past and I prefer the use of the fluent api for mapping over the invasive attributes. Does ...
2
votes
1answer
61 views

Service stack design decision

I need some suggestions in the usage of Service stack. On the server we will have DTOs and services defined for it. But how can client knows about the DTOs.
1
vote
1answer
38 views

In ServiceStack is it possible to mock the Request.OriginalRequest object for unit tests?

I'd like to make my ServiceStack service testable. Presently I have: [RequireFormsAuthentication] public object Delete(DeleteRequest request) { var originalRequest = ...
1
vote
0answers
37 views

how to post plain json data to service stack rest service

Below is the code I am using to post json data to a rest ful service var client = new JsonServiceClient(BaseUri); Todo d = new Todo(){Content = "Google",Order =1, Done = false }; ...
-1
votes
0answers
30 views

Ecommerce Site based on Javascript & Web Services

Do you think that is possible to create an ecommerce site based on web service api (like ServiceStack) and client-side only javacsript mvc framework ? Thanks, Guillaume
2
votes
1answer
46 views

ServiceStack Nested Array Error: KeyValueDataContractDeserializer: Error converting to type: Type definitions should start with a '{'

I'm getting an error when trying to post an nested array to a ServiceStack rest endpoint. The error I'm getting is: KeyValueDataContractDeserializer: Error converting to type: Type definitions ...
5
votes
4answers
149 views

Possible Valid Use of a Singleton?

I've got to the point in my design, where I am seriously considering a singleton. As we all know, the "common" argument is "Never do it! It's terrible!", as if we'd littered our code with a bunch of ...
1
vote
5answers
57 views

What kind of Json structure is this? 4-dimensional array?

{"filters": [ [ "Color", [ [ "Blue", 629, "t12-15=blue" ], [ "Green", 279, "t12-15=green" ] ...
3
votes
1answer
54 views

Using a RequestFilter to Perform Custom Authentication in ServiceStack

Brand new to ServiceStack, so forgive me if this is an easy one. I am writing an API that will use a custom HTTP header for authentication information. I've added a RequestFilter like so: ...
2
votes
1answer
62 views

Protobuf-net with ServiceStack and compact framework

I wrote a server that uses servicestack, and a client that connects to it using both JSON and protobuf-net (so I'm sure the server works...). Now I need to develop the same client on Windows Mobile ...
2
votes
0answers
20 views

Error in HttpListenerResponseWrapper: Write failure

I have a self hosted ServiceStack app running in Linux (Centos 6.4) using mono 2.10.8. I am seeing the following error in my logs intermittently - It is fairly random. Sometimes no errors for a ...
1
vote
0answers
46 views

Servicestack and Sql Server Reporting Services and Snapshot

i'm investigating integrating ssrs with servicestack, but as i'm using the new razor release, there are no references to any asp.net or mvc assemblies in my projects, so hosting in an aspx file for ...
2
votes
0answers
44 views

with servicestack how can i prevent cookies being added to the response?

I can remove the cookies after the fact, with this: public override void Configure(Funq.Container container) { ResponseFilters.Add((req, res, dto) => { ...
2
votes
1answer
50 views

servicestack routing - how do you ignore the query string parameters

For security reasons I want to ignore/disallow all query string parameters. I.e. POST http://myservice/person {name:"john"} //should populate the Name property in my request model POST ...
0
votes
1answer
53 views

ServiceStack - How do I use existing IOC?

We have an existing MVC3 project and use Autofac for DI. To provide RESTful services, we are intending to use ServiceStack. How do we make ServiceStack use existing Bootstrapper.cs that initialises ...
2
votes
1answer
35 views

How to integrate ServiceStack service using protobuf with a non-ServiceStack client?

I would like to use ServiceStack on the server side, and I would like to use protobuf-net as the serialization system used by ServiceStack. However, some of the clients will not be using the ...
1
vote
2answers
25 views

Service Stack Markdown

Does anyone know how to use an enum's ToString method in Service Stack Markdown? I've got a property on my Message object called Status that's an enumeration with 4 values. In markdown I'm doing ...
2
votes
1answer
32 views

Isolating/Accessing set session information within custom validator, servicestack API

I was wondering the best way of accessing the a user's AuthSession from within a custom validator we have hooked up via the servicestack's fluent-validation API hooks. Basically, the requirements ...
2
votes
1answer
50 views

ServiceStack OrmLite and DateTimeOffset support in the UK

I am getting an issue with OrmLite and DateTimeOffset support. I am based in the UK and believe that it is related. I have a table with a column of type DateTimeOffset. I get the following SQL ...
1
vote
1answer
56 views

ServiceStack user management

is there a way to manage users with ServiceStack? I've only found the IUserAuthRepository interface that has some methods to get a user by name, email and id. But how to get a list of users (with ...
1
vote
1answer
55 views

ServiceStack: Get email from auth session when authenticating with Google

I am authenticating users via GoogleOpenIdOAuthProvider. I need to access the email address of the user that logged in. I have attempted to implement the Using Typed Sessions in ServiceStack code ...
1
vote
1answer
69 views

Running ServiceStack with Razor views on CentOS

I have cloned the RazorRockstars project from https://github.com/ServiceStack/RazorRockstars.git and verified that it runs on Windows. Now I want to deploy it to Linux CentOS 6.3 with Mono 2.10.8. I ...
3
votes
0answers
52 views

OrmLite.Sqlite x86 / x64 and native library preloading

I want to target both x86 and x64 platform with a .Net 4 service and ServiceStack.OrmLite.Sqlite I've read about native library preloading ...
1
vote
0answers
40 views

ToOptimizedResultUsingCache and Redis

I have configured the Redis client as below: container.Register<IRedisClientsManager>( new PooledRedisClientManager("url")); container.Register(c ...
1
vote
1answer
48 views

Predicate in Service.OrmLite return enum value incorrectly

I am using ServiceStack.OrmLite (version 3.8.5) and I have the following: var report = dbCommand.Select<UploadedMediaReport>(x => x.Id == message.Id && ...
2
votes
1answer
38 views

ServiceStack error in Release build of Mondroid app

I have mnodroid app that works fine in debug mode but gives me the following error when I build and run in release mode: UNHANDLED EXCEPTION: System.Net.WebException: Error: NameResolutionFailure ...
2
votes
1answer
72 views

Running ServiceStack side by side with MVC

I managed to run ServiceStack side by side with MVC4, but I still have a little problem and hope someone can help me with that. When executing a debugging session through VS2012, everthying works ...
1
vote
1answer
40 views

Including an image in a servicestack model

I'm looking for a good strategy to include an image into a service stack model (if it is possible). I've searched for examples or tips, but haven't had much luck. Something like class House { ...
2
votes
0answers
37 views

Modifying ServiceStack's JSON output

I have to build a REST service with ServiceStack; the responses must have a certain format. Both JSON and XML are to be supported. The standard serializers do not return the response in the format I ...
1
vote
1answer
98 views

DotNetOpenAuth vs ServiceStack Authentication

I'm quite new to ServiceStack so please forgive my ignorance if I ask any questions that appear obvious. I've got a site that is already authenticating users using dotnetopenauth using the normal ...
1
vote
1answer
77 views

Encrypting messages over ServiceStack

Given an app that needs to exchange info such as ConsumerKey/ConsumerSecret for oAuth from - server running "WebApi" over ServiceStack - consumer is a desktop app Looking to encrypt the messages ...
2
votes
1answer
45 views

How to show a “cover page” for a Servicestack api site / Redirect to another website

We have a "webapi" site built using servicestack and everything works great Now browsing to the site brings up the ~/metadata page Is there an option to show a custom stub page as in - pls visit ...
7
votes
1answer
41 views

Exception Handler For ServiceClientBase

I want to handle all WebServiceException's thrown by my service client. Is there a good way to do this right now? For example I'm passing a single ServiceClientBase around a windows forms app. I'm ...
1
vote
1answer
49 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 ...
1
vote
2answers
57 views

How to get IP of the client?

I've wrote a self-hosted servicestack server and a client, both desktop applications. In my very basic PING test service I'm trying to retrieve the IP of the client. Server is on 192.168.0.87:82, ...
1
vote
0answers
38 views

Service Stack Json Response Contains Extra Characters

I'm converting a Web Api project to service stack and in json responses I'm getting an extra line of text before and after the json content. I'm using fiddler to capture the response. Edited for ...
2
votes
0answers
68 views

Using NLog's MappedDiagnosticsContext with ServiceStack

I'm using NLog with my Servicestack service. I'd like to use NLog's MappedDiagnosticsContext to append a variable to each log entry. In my case, I'd like to generate a unique identifier for each ...
1
vote
1answer
101 views

ServiceStack REST API Design

I'm starting to play around with ServiceStack and I'm enjoying it so far but I'm thinking my design is flawed from the get go. Essentially, I have a MSSQL database which I'm accessing via NHibernate. ...
3
votes
0answers
55 views

Should I inject ServiceStack's ICacheManager?

I'm looking to implement a caching tier in our application and accidentally came across ServiceStack's ICacheManager. ICacheManager.Resolve looks as though it's exactly what I'm after (try and get, ...

1 2 3 4 5 26