Feature Requests
Feature, docs and use-case samples requests for ServiceStack. If you can, focus on the end-user benefit / use-case, rather than the technical details so we can focus on the end-goal and free us to work on how best to achieve it. Features can also include supporting content, e.g. a starter project on how to use ServiceStack with another product (e.g. SS + SharePoint).
-
ServiceStack should has native support for building microservice
Microservice is the modern and hot trending architectural design pattern now, ServiceStack should has builtin feature to support building microservice. In Java world they have Spring Boot / Spring Cloud to wire together other open source technologies such as Nextflix Ribbon, Eureka, Kafka etc. to build microservice.
Basically, ServiceStack should be identified itself to be not only a framework of choice to build not only RESTful webservice but also a full-fledged platform such as the Java's Spring framework
2 votes -
Enable validation of metadata attributes - e.g. IsRequired
Currently when a field is marked as IsRequired=true via the OpenAPI attribute it has no relevance to validation. However, it seems very reasonable that when someone marks a field as required, they would want validation that said field was indeed supplied in the DTO. Enabling validation on metadata attributes natively would provide developers this funcitonality without requiring they write a seperate validation method which also lists the required fields.
4 votes -
Add Emailing functionality to Verify Account, Request Password Reset
It would be a good idea for users when using Service Stack Authentication to have functionality like Asp.net Identity to Verify their account, reset their password.
18 votes -
Allow cookie names to be configurable
In order to improve security it would be beneficial to change cookie names from const to a configurable option. It would help mask the presence of service stack and improve security in accordance with OWASP recommendations - https://www.owasp.org/index.php/SessionManagementCheatSheet#SessionIDNameFingerprinting
7 votes -
Add MQ Server support for MSMQ
Add a MQ Server for MSMQ that implements ServiceStack's Messaging API: http://docs.servicestack.net/messaging
5 votes -
Unions implementation for ORM Lite
Hi
In my application user can define multiple filters for specific type. I would like to somehow combine these queries in single one.
SqlExpression<Notice> query1 = Db.From<Notice>(s=>s.param1 == 2);
// ...queries are more complicated but result type is same
SqlExpression<Notice> query2 = Db.From<Notice>(s=>s.param1 == 3 && s.param2 == 3);SqlExpression<Notice> unionAll = query1.UnionAll(query2);
var result = Db.Select(unionAll);25 votes -
okta
Add OKTA as a built-in authentication provider.
12 votes -
AutoQuery Azure DocumentDB Data Source
Azure DocumentDB should be added among existing AutoQuery data source.
19 votes -
Add an LDAP Authentication Provider
With .NET Core not initially having support for Windows Authentication using the System.Directory assemblies, I would like to request the addition of a new LDAP Authentication Provider based on the Novell.Directory.Ldap.NETStandard (https://github.com/dsbenghe/Novell.Directory.Ldap.NETStandard) project. This will allow developers to update to the latest ServiceStack while still providing a way to authenticate and authorize against a legacy/non-Azure Active Directory.
24 votes -
Encrypted messaging javascript client
We have message-level encryption and the corresponding .Net client library to use it. But I'd love to be able to call encrypted services from JavaScript. Ideally add to ss-utils.js, or because the encryption can get bulky, into a new ss-encrypt-utils.js.
9 votes -
SDK Documentation
The c# SDK is seriously lagging in documentation. By that I mean IntelliSense documentation: it would be awsome with some "in line" documentation for methods and properties in the SDK
69 votes -
support F# data type for serialization and deserialization
This is specially for option type and discriminated unions. Currently it is not supported by Servicestack.Text. It would be great to have support for that.
For
type City = Abad | Pune
[<CLIMutableAttribute>]
type Person = {FirstName:string
LastName: string option
City : City}
let p1 = {FirstName = "Foo"; LastName = Some "Bar"; City = Pune}
let jss = new JsonStringSerializer()
let p1Str = jss.SerializeToString(p1)It is serializing
"{"FirstName":"Foo","LastName":{"Value":"Bar"},"City":{"Tag":1,"IsAbad":false,"IsPune":true}}"Where is should be
"{"FirstName":"Foo","LastName":"Bar","City":"Pune"}"For reference https://github.com/Microsoft/fsharplu/wiki/fsharplu.json is library by MSR.
It would be great to have this feature so DTO can be written in F# types. Currently…
17 votes -
ServiceStack GraphQL endpoint
I've just stumbled upon Facebook's GraphQL and it's pretty slick.
The ability to query a ServiceStack endpoint using GraphQL would be a great addition (maybe similar to AutoQuery?) If ORMLite could also populate an object graph using a GraphQL query...49 votes -
support caching in java AndroidServiceClient
Using servicestack client in mobile development with Xamarin gives so much benefits and caching dramatically improves performance and user experience.
It would be nice to have same caching support for all clients (.NET, JAVA, ..)3 votes -
OpenID Connect Auth Provider
"OpenID Connect (OIDC) is an authentication layer on top of OAuth 2.0, an authorization framework." The benefit to developers and consumers is a more simplified way to add a new Auth provider which would provide some standard user info.
http://openid.net/connect/68 votesOne way to enable OIDC with ServiceStack is through IdentityServer, see example in new IdentityServer4 template:
https://docs.servicestack.net/releases/v5.5#using-identityserver4-auth-in-servicestack
ServiceStack also added support for using ASP.NET Identity Auth, see:
https://docs.servicestack.net/releases/v5.5#using-aspnet-identity-auth-in-servicestack -
Create an object that supports the coming Redis Cluster feature with v3.0
Much like you have created a RedisSentinel object ... I have a need for a RedisCluster object that supports the new feature which is coming in v3.0. Thanks.
145 votes -
Improvements for batched requests
I've started working with request batching, which is a really nice feature. Everything works, but there two improvements I'd like to see.
Firstly, for IReturnVoid requests there is SendAllOneWay, but there is no async version of that method.
Secondly, I'd like to be able to specify a http Verb with the SendAll methods. The implementation should select the correct method in the service, both when calling a single request method multiple times, but also for the batched method. Right now the batched service methods always need to be Any(), it would be nice to be able to have Delete(OrderID[] orders).
3 votes -
Support oAuth2 login to Swagger API
Swagger now support oAuth login page to create a access_token to apply to a oAuth protected API: http://developers-blog.helloreverb.com/enabling-oauth-with-swagger/
Please could you add a similar capability to ServiceSatck.SwaggerFeature that enables SS developers to add a similar capability to their own APIS that are protected by oAuth.
51 votes -
OrmLite CodeFirst Schema Migrations
Support to automatically update a db schema based on changes such as: adding/renaming and possibly removing a property or class.
111 votes -
Provide an option in Save References to delete missing References
e.g:
db.Save(poco, references: true, deleteMissing: true);
from: https://forums.servicestack.net/t/ormlite-graph-update/1395
6 votes
- Don't see your idea?