I have a WCF Service currently deployed with basicHttpBindings and SSL enabled. But now i need to enable wcf sessions(not asp sessions) so i moved service to wsHttpBidnings
If you want "sessions" with wsHttpBinding, you have to use either reliable messaging, or the security sessions.
To enable sessions on wsHttpBinding, you need reliable messaging, and for that, you need to change the setting for reliable session (the tag that looks like this
) to be enabled - so your new config would look like this: