Hi Team,
I am using CouchbaseAspNet Version 3.0.0 nuget package for managing Session State.
sessionState cookieless=“false” regenerateExpiredSessionId=“true” mode=“Custom” customProvider=“Couchbase”>
providers>
add name=“Couchbase” timeout=“20”
type=“Couchbase.AspNet.Session.CouchbaseSessionStateProvider, Couchbase.AspNet,
Version=3.0.0.0, Culture=neutral, publicKeyToken=be12d0a2da0eb156”
bucket=“bucketname” username=“username” password=“password” bootstrapStrategy=“inline”
servers=“serverUri” useSsl=“true” prefix=“app1” throwOnError=“false” />
/providers>
/sessionState>
I want to get rid of username and password attributes and replace it with Certificate authentication ( As I have done for other CRUD operations using Couchbase.NetClient package).
Can you suggest the best approach to go ahead? Or any other way I can manage Session store wherein I can use Certificate authentication rather than Credentials.?