interface - WCF Service and Properties -
here question, have solution 4 projects in wcf service :
- dll library : service interface.
- dll library : service code.
- form application : service hosting application.
- form application : service client application.
i'd have properties of service accessible hosting application not client one. if declare property in client interface both have access it.
in fact, service manage user identity login , keep list of user logged in. i'd able show list in hosting application, debugging tool. don't want service client able access list.
how can ?
thank in advance.
you can put put code "2" (service code). since share interface client not exposed.
also, if logic (authentication , authorization) "hosting app" specific maybe should in hosting app rather service code.
Comments
Post a Comment