Implementing Secure cookie attribute in request data

I need to set Secure cookie attribute in request data.
Added following attributes in the server’s web.xml :

<session-config>
    <cookie-config>
        <http-only>true</http-only>
        <secure>true</secure>
    </cookie-config>
 </session-config>

Getting the below screen :

Screenshot from 2024-08-05 20-21-13

Version Details :
Jmix version: 1.5.0
Jmix Studio plugin version: 2.0.0-231

Hi,

Do you access your application using HTTP or HTTPS protocol? If you access it over HTTP that might be the reason. If you have set the “secure” cookie, this means that it can only only be accessed over HTTPS.