Exemplo n.º 1
0
/* ***************
*** APL_CryptoFwk ***
***************** */
APL_CryptoFwk::APL_CryptoFwk()
{
	m_proxy_host.clear();
	m_proxy_port.clear();
	m_proxy_pac.clear();

	resetProxy();

	m_CrlMemoryCache=NULL;
	m_CrlMemoryCache=new CrlMemoryCache();
}
Exemplo n.º 2
0
CWizApiBase::CWizApiBase(const QString& strAccountsApiURL /* = WIZ_API_URL*/)
{
    m_server = new CWizXmlRpcServer(strAccountsApiURL);

    connect(m_server, SIGNAL(xmlRpcReturn(const QString&, CWizXmlRpcValue&)), \
            SLOT(xmlRpcReturn(const QString&, CWizXmlRpcValue&)));

    connect(m_server, SIGNAL(xmlRpcError(const QString&, WizXmlRpcError, int, const QString&)), \
            SLOT(xmlRpcError(const QString&, WizXmlRpcError, int, const QString&)));

    resetProxy();
}
Exemplo n.º 3
0
CWizApiBase::CWizApiBase(const QString& strKbUrl /* = WIZ_API_URL*/)
    : m_nCurrentObjectAllSize(0)
    , m_bDownloadingObject(false)
{
    m_server = new CWizXmlRpcServer(strKbUrl);

    connect(m_server, SIGNAL(xmlRpcReturn(const QString&, CWizXmlRpcValue&)), \
            SLOT(xmlRpcReturn(const QString&, CWizXmlRpcValue&)));

    connect(m_server, SIGNAL(xmlRpcError(const QString&, WizXmlRpcError, int, const QString&)), \
            SLOT(xmlRpcError(const QString&, WizXmlRpcError, int, const QString&)));

    resetProxy();
}