hi,
i am using silverlight 4 and wcf basic http binding service . i have implemented my own custom authenticatoin ticketing system which also implements sliding expiration i.e if token in x seconds old , it rejects the calls.for that to function properly each operation call needs the token and each sucessful call shall recieve a new token which shall be used in subsequent calls.
what i want is ,
- how do i pass the token from the wcf to the silverlight app ? is there something like httpcontext.current.response....? yes , my servcie AspNetCompatibilityRequirementsMode.Required is set. and how do i collect the new token in my operationcompleted event?
thanks Jamal.
P.S
since my custom authentication also implements sliding expiration , thus , for each operation completion on the wcf service i must send a new token .