See the following solution using the Mobile and Library servers for Strategy Mobile and Library iOS app SAML authentication on iOS 18 devices.
The configuration update must performed on the StrategyMobile server configuration setting.
sys_defaults.propertiesfile under
StrategyMobile/WEB-INF/xml/and add the following lines:
sameSite=None secure=1
sys_defaults.propertiesfile under
StrategyMobile/WEB-INF/xml/and add the following lines:
sameSite=None secure=1
jboss/standalone/configuration/standalone.xml.
standalone.xmland add
<session-cookie http-only="true" secure="true"/>to the existing code, as shown below:
<subsystem xmlns="urn:jboss:domain:undertow:10.0" default-server="default-server" default-virtual-host="default-host" default-servlet-container="default" default-security-domain="other" statistics-enabled="${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}"> <buffer-cache name="default"/> <server name="default-server"> <http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/> <https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/> <host name="default-host" alias="localhost"> <location name="/" handler="welcome-content"/> <http-invoker security-realm="ApplicationRealm"/> </host> </server> <servlet-container name="default"> <jsp-config/> <session-cookie http-only="true" secure="true"/> <websockets/> </servlet-container> <handlers> <file name="welcome-content" path="${jboss.home.dir}/welcome-content"/> </handlers> </subsystem>undertow-handlers.confusing the following code and save it to the
WEB-INFfolder of the Strategy Mobile deployment:
samesite-cookie(mode=NONE)
The configuration update must be performed on the StrategyLibrary web server configuration setting.
See Configure SameSite Cookies for Library for more information.
See Configure SameSite Cookies for Library for more information.