I have a WCF service which first ask client for login.
once client is logged in he can use other features as well.
now what i want? when client is successfully logged in , I want to store some of his information at WCF Service side.
I have created a perSession WCF service.
for example. every client has a client type. i want to store client type at service side. just like we store it in sessions in normal asp.net site.
I hope u understand what i want.
WCF service operations should be state-less, i.e. the request contains everything that is required for the operation to execute.
What you are trying to implement is not a service-oriented architecture.