1
vote
1answer
27 views

How/where does ServiceStack cache the razor views?

When a request is first made to a ServiceStack service, it goes in and looks for all Razor views, compiles and caches them. Where is the assembly cached for the compiled views stored? When in release ...
1
vote
1answer
35 views

How to remove *Response convention in service stack?

I am trying to stand up a service using Service Stack. The service needs to meet soap 1.1 standards. Now the operation object that I am trying to use is called SendGetAccountResponse and I created no ...
2
votes
0answers
45 views

Patterns for handling scheduled/unscheduled downtime using ServiceStack and WebApi

Now that we have webservices running, we need to make changes to db, servers etc. so .. wondering if there are any patterns for handling planned and unplanned downtime using ServiceStack and also ...
2
votes
1answer
82 views

How to create a enumerable / class string or int and serialized?

I have been looking for hours now and i have no idea how to solve my problem. I am writing a Service Stack API and I need whoever is going to consume it to pass in valid values in only. I have a ...
1
vote
1answer
42 views

ServiceStack proper way to access routes and avoid markup

I think this question is more about best practices regarding web services and not necessarily limited to ServiceStack only. From what I've read here and on the SS wiki, the 'recommended' way to ...
2
votes
1answer
46 views

ServiceStack, requests, thread id's, log4net

I have the need to have an option to enabled deep debug logging using log4net. I am familiar with how classic ASP.Net handles threads, but I wondered how threads work with ServiceStack. The goal ...
2
votes
1answer
38 views

How to correlate the request and response for the purpose of logging

I'm using the Global filters to log the request/response which works fine, but now I'd like to embed a correlation ID (Guid) in both to that I may tie the 2 together. What's preferred way to do ...
1
vote
0answers
47 views

ServiceStack DTO Model Binding for Route Parameters AND Body

I have a Request DTO set up for performing a PUT against a service that results in an update. I require both route parameters AND a json payload to be sent as the PUT (this payload is the ...
2
votes
1answer
44 views

How to get the Response Headers from IHttpResponse

I'd like to be able to retrieve the response headers for logging purposes, but do see a Headers property on the Interface, but I do see OriginalResponse. Are we supposed to cast this and use it? Will ...
1
vote
1answer
66 views

How to properly inject dependencies with the built in Funq container?

I have a cached repository public interface IRepository { void LogWebUsage(string html); IEnumerable<ApiKey> GetApiKeys(); ApiKey GetApiKey(Guid key); } public class Repository : ...
1
vote
1answer
39 views

How do I use IDbConnection withing my apphost

I like to know how to access the IDbConnection from within my Global Filters, what I have so far is this. Now the more I think about it, I don't IDb stuff in my apphost, so how may I retrieve my ...
2
votes
0answers
63 views

Routing JSON string in ServiceStack

I have a service that accepts encrypted JSON data but I want to decrypt that JSON data using an external service so I can pass the unencrypted data to be serialized and handled by the appropriate ...
11
votes
1answer
2k views

In what order are the ServiceStack examples supposed to be grokked?

Just out of curiosity I like to know the preferred ordering, based on technical level and new api of the examples. For the most part, all the base infrastructure concerns all smell the same i.e. ...
2
votes
1answer
46 views

Where are plug-ins supposed to be added in ServiceStack

So simple yet I can't find any info or examples that explain exacty where this should happen. I'm guessing at this point that it should be in the Configure method. Thank you, Stephen Global public ...
2
votes
1answer
96 views

ServiceStack IOC not injecting property in Attribute (object is null)

I'm trying to log/persist all my requests/responses, and thought that I give it a try with a global attribute, but when I go to actually using the repo, it's null? Is this possible? Are there other ...
2
votes
1answer
33 views

How do I order my Custom Filter Attributes

I'd like to control the order that the filters are run, is this possible? [LogRequestFilterAttribute] [ApiKeyRequestFilterAttribute] I always want to Log the Request first, then the security check, ...
1
vote
1answer
51 views

How to use ServiceStack Logging but have it delivered through the IOC container

Title about sums up what I'm looking to achieve, although now that I'm posting some code I would also like to know if the LogFactory in the correct place. Thank you, Stephen public class ...
2
votes
1answer
63 views

Examine Request Headers with ServiceStack

What is the best way to inspect the Request Headers for a service endpoint? ContactService : Service Having read this ...
2
votes
1answer
37 views

How migrate existing SOAP endpoints to ServiceStack

I've the good fortune of being able to kick off a new project with the tooling of my choice, which is ServiceStack. The Architecture is very solid and the product was out before web api was even a ...
5
votes
1answer
462 views

Creating a service for client authentication with servicestack?

I have a couple of applications (mobile and desktop) that I need a simple webservice created for authentication and to post information back to the clients. After having man problems trying to figure ...
3
votes
1answer
199 views

How to write method having many parameters in REST webservice

I need to develop a web method that has many parameters. In REST, I understand a webservice has its own significance by attaching itself to particular entity and HttpVerb determines operation type. ...
1
vote
1answer
88 views

Cache in ServiceStack web services

I am new to caching and trying to understand how it works in general. Below is code snippet from ServiceStack website. public object Get(CachedCustomers request) { //Manually create the Unified ...
1
vote
1answer
121 views

Using ServiceStack ICacheClient with Redis and Ninject

I am using the ICacheClient from the servicestack library with Redis as a backend. I am also using Ninject for DI. I am trying to figure out in which scope to bind the PooledRedisClient manager. I ...
2
votes
1answer
164 views

Use asp.net authentication with servicestack

I have written a couple of ms lightswitch applications with forms authentication -> this creates aspnet_* tables in sql server. How can I use the defined users, passwords, maybe even memberships, ...
1
vote
0answers
56 views

get NT Login using javascript

How do you get the NT login name using javascript? This is how you can do it in webforms: Session("NTLogin") = Page.User.Identity.Name but we want to only run js on the client side and ...
3
votes
3answers
235 views

Is OrmLite truly database agnostic?

I am new to Service Stack and OrmLite, and was exploring ORMLite as an alternative to Entity Framework. 2 questions I have about this: - The reason EF appeals to me is the ability to separate the ...
2
votes
1answer
307 views

why does servicestack returns 404 Handler for Request not found error?

I have created a Rest Based services in .net 4.5 and hosted the same in IIS7. I was able to hit the service using HTTP WebRequest (GET,POST) and get the response, But when hit through ServiceStack I ...
27
votes
4answers
2k views

What's the current best solution for generating HTML from ASP.NET Razor templates within a Console Application?

I want to do this: string template = "Hello @Model.Name! Welcome to Razor!"; string result = Razor.Parse(template, new { Name = "World" }); And it appears that http://razorengine.codeplex.com is ...
1
vote
0answers
40 views

Running ServiceStack with another framework

I have a legacy ASP.NET (Web Forms) Website to which I would like to add some API goodness courtesy of ServiceStack 3.9.33.0. The site is hosted as an Application in IIS so that the paths of all URIs ...
1
vote
1answer
127 views

ServiceStack: how to ignore a route?

I'm trying to get Elmah working with ServiceStack running as the base routing engine. Is there any way to ignore a certain route with ServiceStack, so I could go to '/elmah.axd', or maybe another ...
2
votes
1answer
192 views

Multiple Assemblies for Multiple Services

I'm not sure how to organize my project. I have a solution with multiple services. eg. ShoppingCart, UrlShortener. The AppHostBase can only take one assembly however. I'm also interested in separation ...
1
vote
2answers
201 views

ServiceStack Social Bootstrap API example - Sign in

I am firing up the ServiceStack social bootstrap api example to see how it works. I clicked the "sign in" link and nothing happened. And I looked into the code (see attachment pic 1) <a ...
3
votes
0answers
165 views

Testing ServiceStack services with custom factory

I have read excellent article here about accessing ASP.NET session from ServiceStack. It seems to work great, but I don't know how to make a "passing" UT (Nunit) for services which need direct acces ...
2
votes
0answers
107 views

ServiceStack ResponseFilterAttribute not being called

//--------------------------------------------------------------------- //Aspect Filters public class RequestAspectAttribute : RequestFilterAttribute { public RequestAspectAttribute() { } //debug ...
2
votes
1answer
237 views

ServiceStack credentials auth endpoint gives 404

I am running a ServiceStack app on IIS 7.5, with a custom CredentialsAuthProvider serving at /auth/credentials. It works fine from Visual Studio, but when I install it on the production server (also ...
1
vote
0answers
218 views

Getting ServiceStack RedisStackOverflow example to work

Hi I am new to ServiceStack+Redis. Now I am looking at RedisStackOverflow example that comes with ServiceStack. I get an error when I try to run it: SocketException - An operation was attempted ...
3
votes
3answers
696 views

deserialize json into list of anonymous type

I have a json as below : "[{"a":"b","c":"d"},{"a":"e","c":"f"},{"a":"g","c":"h"}]" now I want to deserilize this into a list of objects of anonymous type "foo" var foo=new { a=string.empty , ...
0
votes
2answers
564 views

Validate a string to be json or not in asp.net

is there any way to validate a string to be json or not ? other than try/catch . I'm using ServiceStack Json Serializer and couldn't find a method related to validation .
3
votes
1answer
292 views

Getting a 404 error when using ServiceStack's Soap12ServiceClient to send a request object to a service configured with ServiceStack.Factory

Here's my relevant client-side code called from a generic handler: private static readonly IServiceClient Client = new Soap12ServiceClient("http://localhost/MyService/Send"); _serviceRequest = new ...
1
vote
1answer
165 views

How to Declare servicestack RestService with list of objects?

I need to pass multiple objects from my application to the rest service that is using servicestack. I need to do something like this EventLogService : RestServiceBase<List<EventLogData>> ...
2
votes
1answer
345 views

How to get URI from which REST API (ServiceStack) being consumed

I have some issue regarding REST API which i have built using servicestack. End user will consume this API from their application hosted on their server. I'd like to grab absolute uri and IP address ...
3
votes
1answer
285 views

Servicestack client outside of .NET framework, implementation?

I plan on consuming the REST services provided by ServiceStack outside of .NET. I plan to writing clients for java and obj-c. This should be easy since it is a REST service, however in the ...
1
vote
1answer
812 views

ServiceStack Authorization - Access Route Information

In the documentation for ServiceStack, it says that the best practice is: Normally ServiceStack calls the method bool HasPermission(string permission) in IAuthSession. This method checks if the ...
5
votes
2answers
597 views

How to configure Ninject to work with ServiceStack.net

In trying to configure ServiceStack.net to use Ninject as its IOC, I am getting errors referring to various bindings not being defined. Primarily for ICache Client. What specific bindings need to be ...
1
vote
2answers
799 views

Error passing Datetime as querystring parameter to Servicestack.net GET method

I trying to pass a DateTime object as a query string parameter to a webservice method built with ServiceStack.net. The date is properly URL encoded when passed but I keep getting the following error: ...
4
votes
3answers
1k views

Use ASP.NET Membership in ServiceStack

how can i use asp.net membership in ServiceStack ? (ServiceStack.OrmLite , ServiceStack.Host.AspNet , etc )
10
votes
2answers
2k views

How can I use a standard ASP.NET session object within ServiceStack service implementation

I'm just getting started with ServiceStack and, as a test case, I am looking to rework an existing service which is built using standard ASP.Net handlers. I've managed to get it all working as I want ...
2
votes
1answer
104 views

Switch from consumer application to WCF (servicestack) by debugging in Visual Studio

I am developing one product and there are 4 separate projects, in that I have developed one EXE project and WCF and I have done switching in debugging mode by attaching WCF project in process of ...
1
vote
2answers
135 views

How to get the reference of dll in remote application, how can i do that?

I think this is really a tricky question.(for c#, wcf ,restwcf, servicestack) I am having one service stack application, for those who don't know servie stack consider it is a rest-wcf application. I ...
2
votes
1answer
514 views

What is the namespace for IService interface?

I am learning srevicestack and developing simple demo for helloworld but could not find namespace for Iservice interface , my code as per below public class Hello { public string name { get; ...

1 2