Hi,
I have been told by my TAM that if I want to handle our own failover, we need to set allowSuspectData and singleOpen both to FALSE
Looking at the documentation.
{code}
AllowSuspectData - void setAllowSuspectData( AllowSuspectData::SupportType );
class RFA_VALUE_ADD_API AllowSuspectData
{
public :
/** \enum SupportType
* An enumeration representing supported AllowSuspectData support type values
*/
enum SupportType {
NotSupported = 0, /*!< indicates no support for AllowSuspectData functionality */
Supported = 1 /*!< indicates support for AllowSuspectData functionality */
};
private :
AllowSuspectData();
};
/** method to set requested SingleOpen support type
*/
void setSingleOpen( SingleOpen::SupportType );
class RFA_VALUE_ADD_API SingleOpen
{
public :
/** \enum SupportType
* An enumeration representing supported SingleOpen support type values
*/
enum SupportType {
NotSupported = 0, /*!< indicates no support for SingleOpen functionality */
Supported = 1 /*!< indicates support for SingleOpen functionality */
};
private :
SingleOpen();
};
{code}
So it looks like default value is Supported and it should be set as NotSupported?
{code}
loginAI.setSingleOpen( SingleOpen::Supported );
loginAI.setAllowSuspectData( AllowSuspectData::Supported );
{code}
Can you please confirm?
Thanks,