I created a custom logon page and its not working. I'm pretty sure that it has to do with the authscheme.xml file. Can someone post the authscheme.xml file they used for their custom logon page, or tell me what is wrong with mine. I posted it below and my custom logon par is named: CM_Logon.par.
Really appreciate any help.
Regards,
Tom
<?xml version="1.0" encoding="UTF-8" ?>
- <!-- Configuration File for Authentication Schemes
-->
- <!-- $Id: //shared_tc/com.sapall.security/630_VAL_REL/src/_deploy/dist/configuration/shared/authschemes.xml#1 $ from $DateTime: 2004/03/08 16:48:43 $ ($Change: 14741 $)
-->
- <document>
- <authschemes>
- <!-- authschemes, the name of the node is used
-->
- <authscheme name="uidpwdlogon">
- <!-- multiple login modules can be defined
-->
<authentication-template>ticket</authentication-template>
<priority>20</priority>
- <!-- the frontendtype TARGET_FORWARD = 0, TARGET_REDIRECT = 1, TARGET_JAVAIVIEW = 2
-->
<frontendtype>2</frontendtype>
- <!-- target object
-->
<frontendtarget>CM_Logon.certlogon</frontendtarget>
</authscheme>
- <authscheme name="certlogon">
<authentication-template>client_cert</authentication-template>
<priority>21</priority>
<frontendtype>2</frontendtype>
<frontendtarget>CM_Logon.certlogon</frontendtarget>
</authscheme>
- <authscheme name="basicauthentication">
<authentication-template>ticket</authentication-template>
<priority>20</priority>
<frontendtype>2</frontendtype>
<frontendtarget>CM_Logon.basicauthentication</frontendtarget>
</authscheme>
- <authscheme name="header">
<authentication-template>header</authentication-template>
<priority>5</priority>
<frontendtype>2</frontendtype>
<frontendtarget>CM_Logon.header</frontendtarget>
</authscheme>
- <!-- Reserved 'anonymous' authscheme added for being in the list of authschemes
-->
- <authscheme name="anonymous">
<priority>-1</priority>
</authscheme>
</authschemes>
- <!-- References for Authentication Schemes, this section must be after authschemes
-->
- <authscheme-refs>
- <authscheme-ref name="default">
<authscheme>uidpwdlogon</authscheme>
</authscheme-ref>
- <authscheme-ref name="UserAdminScheme">
<authscheme>uidpwdlogon</authscheme>
</authscheme-ref>
</authscheme-refs>
</document>