Add the login POST URL. This
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdsApp::SetLoginPost | (hzString&,hzString&,hzString&,hzString&,) |
Declared in file: hzDissemino.h
Defined in file : hdsCore.cpp
Function Logic:
Function body:
hzEcode hdsApp::SetLoginPost (hzString& post)hzString& fail, hzString& auth, hzString& resume,
{
// Category: Dissemino System Initialization
//
// Add the login POST URL. This
m_LoginPost = post ; // The URL to which login form submissions must be posted
m_LoginFail = fail ; // The URL the user will be directed to in event of username/password mismatch
m_LoginAuth = auth ; // The URL the user will be directed to in event of successful authentication
m_LoginResume = resume ; // The URL the user will be directed to in event of successful session resumption
return E_OK ;
}