Hi,
I'm trying to terminate active session. As per document, we need to have a event handler like
[Operation(Name="TerminateSessionResponseHandler",
Action=SessionActions.TerminateSessionResponse)]
public TerminateSessionResponseHandler(TerminateSessionResponse response)
{
//terminating session here.
}
But i could not able to findout TerminateSessionResponse action in SessionActions. I'm using CSF 3.0 Dev version which is available in the msdn.
Since this action is not available i tried with SessionActions.TerminateResponse, but i'm getting Message dispatch failure error. Could anyone please help me out
Rgs
Vasu

TerminateSessionResponse
Katzs
Vasu - I think there is a bit of inconsistency in the naming of the actions.
Could you please try to use SessionActions.TerminateResponse instead of SessionActions.TerminateSessionResponse
Thanks
Daniel Hilgarth
Thank you Senthil.
But SessionActions.TerminateResponse will not work in this case. I tried with SessionActions.SessionTerminatingNotification, it's working fine.
Rgs
Vasu