开发者

Differentiating requests from client and other services

开发者 https://www.devze.com 2023-03-17 09:06 出处:网络
We have a 3 tier application - winform based thick client, several WCF services hosted in windows services and sql. Some WCF services provide functionalities specific to UI in the clients but there ar

We have a 3 tier application - winform based thick client, several WCF services hosted in windows services and sql. Some WCF services provide functionalities specific to UI in the clients but there are services running to do data loadin开发者_高级运维g, processing, caching etc. So, all these services talk to each other and also serve requests from clients.

Now comes the actual question : Is there a way to understand if a request is from a client or from another service. Assuming I write a message inspector, can I somehow interpret, if a request is coming through from a client (user) or from another service.

What I am trying to achieve - This is in another thread if you need. stopping user requests to wcf services. But briefly, am trying to keep the services locked from user access but the services should continue to run and be accessible to/from other services.


Is there a way to understand if a request is from a client or from another service. Assuming I write a message inspector, can I somehow interpret, if a request is coming through from a client (user) or from another service.

That is a task for authentication and authorization. Your clients will have accounts in Clients group and your services will have accounts in Services group. You will also probably need some custom ServiceAuthorizationManager which will check if clients are allowed to access the service and either pass them in or throw exception.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号