Service facade calls - security checking

2009-02-14T00:06:59

For a service facade implemented in .NET, is there an option (e.g. a 3rd party library) that can be used to perform some security checking? I mean some kind of access control list based checking for every method, based on their roles.

Copyright License:
Author:「lmsasu」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/546513/service-facade-calls-security-checking

About “Service facade calls - security checking” questions

For a service facade implemented in .NET, is there an option (e.g. a 3rd party library) that can be used to perform some security checking? I mean some kind of access control list based checking for
We are having a "discussion" about what should be placed in the facade layer and how many calls the facade layer should make to the underlying layers. In our project we have an Orchestration layer...
I'm working on a system where I would like to implement a facade service that does some user-related stuff in it and also communicates with the Keycloak server via its rest API. Keycloak has its own
Before I ask my question I must describe how our applications are built. We run several web applications that uses ejb´s in the service layer. I try to describe the communication with a short exa...
I have a microservice architecture with few services and a facade layer on top of it. Now I want to add the file upload functionality to it. So basically I will have one microservice for it, whose
I'm currently in the process of writing unit tests for a Trait. This Trait included a method called registryPersist() which in tern calls a Facade method called Registry::persist(). This method as ...
I just upgraded to .NET 4.5 and I want to take advantage of the asynchronous method features. Specifically, I have a facade that makes 4 different api calls and aggregates the responses into a single
I'm developing web application using SpringMVC according to 3tier architecture (Presentation, Application, Domain layers). Also there is a facade service on presentation layer and each request from
For the most part I get the idea behind a facade and how the details of instantiating the object are hidden behind the static calls. So if we take a look at this straight forward example here: Exa...
We have an (existential) question about architecture. We are arrived on a project designed with Struts1, Spring, Hibernate. The architecture is very heavy with Service Locator, Delegate & Facade

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.