Dear DevExpress team,
in attachment you can find my sample MVVM/SL application with a very basic WCF service which providing IDataStore.
This application has some basic features for selecting, saving and deleting the data via UnitOfWork/DataStoreClient.
Is it possible to extend this WCF service for tracking select, update, insert queries and checking user authentication on the server side?
I examined already different examples and documentation, but unfortunately i could not derive a right solution for my case.
I want extend my sample application to the following scenario:
- Client contacts the WCF service by giving information about user. E.g. int UserID = 1
- WCF service providing the ICachedDataStore (or IDataStore) for the client and creates a user specific session on the server side
- Client sends a request to web service for delete, save, insert or select an object
- WCF service checking the UserID/SessionID
(E.g. IF UserID = 1 then allow data deletion)
(E.g. IF UserID = 2 then allow data modification)
Would you please give me advice how to extend my wcf service for described situation?
It would be great if you can extend attached sample to some basic templates to help me,
because there are many different examples and I don't know which one is up2date and appropriate for my case.
Thank you in advance!
Alex