An application developer is working with the Worklight administrator to secure a mobile application using adapter based authentication. The administrator provides the following configuration in the authenticationConfig.xml file. <securityTests> <customSecutityTest name="AuthenticationAdapter-securityTest"> <test isInternalUserID="true" realm="AdapterAuthRealm"/> </customSecutityTest> </secutityTests> <realms> <realm loginModule="AdapterAuthLoginModule" name="AdapterAuthRealm">…

An application developer has started configuring header-based authentication for an application. So far, the developer has implemented the security test and login module as follows: <securityTests> <customSecurityTest name="HeaderTest"> <test realm="RealmHeader" isInternalUserID="true" /> </customSecurityTest> </securityTests> <loginModules> <loginModule name="HeaderLogin"> <className>com.worklight.core.auth.ext.HeaderLoginModule</className> <parameter name="user-name-header"…