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).
161 results found
-
Autoquery to support Group By
The AutoQuery plugin is great especially for use with many front end grids/tables, however it lacks the ability to Group By. Can you implement it to have feature parity to work with many of the front end grid components (ie kendo grid/devexpress/etc)?
33 votes -
Two Factor Authentication Feature
Two Factor Authentication is a pretty standard thing nowadays, it even comes baked into the typical ASP.NET Core Identity system. It would be nice if Service Stack had this feature as well. We are working on porting a legacy application from ASP.NET to ServiceStack and this is a requirement for government applications (some form of TFA).
23 votes -
PocoDynamo - Support Distributed Locks
The Redis client supports distributed locks, which is a really useful feature, the same is possible using DynamoDB.
Reference Implementation:
https://github.com/awslabs/dynamodb-lock-client6 votes -
Add a MQ Server support for Azure Storage Queues
Storage Queues are cheaper and more performant than azure service bus if guaranteed first-in-first-out, etc is not required.
They do offer 'At-Least-Once' guaranteed delivery, where Redis is 'fire and forget'.
Combining this with full featured CosmoDb caching instead of Redis would make a compelling low-cost option.
11 votes -
Support for ServiceStack Client in NativeScript applications
I think that ServiceStack TypeScript client does not work in NativeScript + Angular2 applications, as I am getting a bunch of weird errors when trying that (in Fetch module).
I installed the module as this:
npm install --save @servicestack/clientIs there support for the TypeScript client in NativeScript applications? If not, Id like there to be =)
7 votes -
Increase the number of generics parameters of Select, SelectDistinct and GroupBy
While some methods of SqlExpression<T> supports up to 15 generic parameters (Where, And, Or) others like Select, SelectDistinct and GroupBy only supports a couple. When building complex queries, it's easy to select data from more than 7 tables, or group by fields from more than 4 tables.
Could you implement more Select, SelectDistinct and GroupBy overloads like you did for Where, And and Or?
There is no specific number of parameters needed, but I think that the default 15 is a good start.
3 votes -
Improve QueryStringSerializer.SerializeToString to use lowercase bools
Right now, bools are serialized uppercase since that's the default ToString behavior of .NET.
Consider changing this behavior by checking for bool when serializing and using .ToString().ToLower(), or introduce a setting to control this. It's web standard to use lowercase bools in query strings.
More info/discussion:
https://github.com/ServiceStack/Issues/issues/5868 votes -
PocoDynamo - Support Condition Expressions
Support Condition Expressions for PutItem, UpdateItem and DeleteItem operations.
1 vote -
Add SAML 2.0 auth provider
Add SAML 2.0 as built in auth provider. Really useful for Azure AD SSO.
8 votes -
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/Session_Management_Cheat_Sheet#Session_ID_Name_Fingerprinting
7 votes -
Implement Brotli compression support
Please implement Brotli compression support for request and response payloads. (-:
There exists a few C# libraries, like this one: https://github.com/XieJJ99/brotli.net
9 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);28 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.
8 votes
- Don't see your idea?