I have a web app which I would like to use secure cookies for.
Unfortunately, I do not know some of the following pieces of information:-
Under Xojo Cloud, what is app.cookieDomain ?
cookiePath ?
Right now, my insecure cookies work OK. but secure is preferable.
Regards,
Tony Barry
Sydney
if debugBuild then
Session.Cookies.Set(app.cookieTitle, password, expiryDate)
else
Session.Cookies.Set(app.cookieTitle, password, expiryDate, app.cookieDomain, cookiePath, secureCookie, httpOnlyCookie)
end if