by Francesco de Vicariis | Jan 29, 2020 | Blog
When it comes to security in an application, you always have to think of something indispensable but not always easy to implement. Over the years, I have used different authorization models: from the classic role-Based to custom authorizations, written ad hoc for the...
by Enrico Bencivenga | Jan 22, 2020 | Blog
I’d bet you’ve certainly been asked to add advanced search features to your Web application, and often a full-text Google-like search.During the development of an e-commerce of technology, we were asked to allow users to perform advanced research on the products, so...
by Michele Aponte | Jan 1, 2020 | Blog
I am working on a new project, for which I need to authenticate an Angular client to access to a set of microservices. The permission to access each microservices depends on the current user privileges, and I need to be independent of the authentication mechanism. We...
by Genny Paudice | Dec 25, 2019 | Blog
In the previous article, we saw how the use of a service bus could benefit software systems where the decoupling between their parts is necessary. In particular, we have seen how to do that with Rebus. Rebus makes available a very interesting feature: the ability to...
by Francesco de Vicariis | Nov 20, 2019 | Blog
During the common refactoring on a client’s project, we converted the previous synchronous code in an asynchronous version, using the Tasks and the pattern async-await of the .NET framework. I suggest that you read the article about this issue,...