Enter Title

Release notes ver SIXP CPP API 1.2.5044

New functionality
- Added support for Json news format

Bugfixes
- Reconnect fix
- Fixed timeout crash

Release notes ver SIXP CPP API 1.0.4328

New functionality
- Switch from exceptions to error codes to resolve issues between dll runtime and client runtime

Bugfixes
- Added cleanup of auto destroy to requests
- Auto cleanup of auto destroy requests
- Request timeout cleanup fix
- Fixed error related to protocol state on reconnect
- Fixed crash in snapshot_requester
- Ignore updates received on requests that are in an error state
- Better error handling in sixp_variant::to_string

Known errors

Notes

The client code have to be rewritten in some parts to work:

///from:
dl->setRequest(session->create_request(prl.c_str(),six::sixp::client::irequest::table,true,dl));///
///to:
six::sixp::client::irequest *req;
sixp_result res=session->create_request(req,prl.c_str(),six::sixp::client::irequest::table,true,dl);
if (res!=six::sixp::client::sixp_error_no_error) {
    printf("Error creating request: %d %s\n",res,session->get_last_error_message());
    return;
}
dl->setRequest(req);

///from:
six::sixp::client::isession *s=c->create_session(this,m_server.c_str(),m_userid.c_str(),m_pwd.c_str(),six::sixp::client::iclient::reconnect_resubscribe,5,NULL);

///to:
six::sixp::client::isession *s;
sixp_result res=c->create_session(s,this,m_server.c_str(),m_userid.c_str(),m_pwd.c_str(),six::sixp::client::iclient::reconnect_resubscribe,5,NULL);    
if (res!=six::sixp::client::sixp_error_no_error) {
    printf("Error creating session: %d %s\n",res,c->get_last_error_message());
    return;
}

Release notes ver SIXP CPP API 1.0.4235

New functionality

Bugfixes
- Fixed reconnect crash when having active get reqeustes
- Fixed destroy_request after disconnect tried to unsubscribe
- Fixed reconnect crash on Windows Server 2003 and Windows XP

Known errors

Notes

Release notes ver SIXP CPP API 1.0.4220

New functionality

Bugfixes
- Fixed crash in logging request timeouts.
- Fixed irequest->get_prl() returned garbage when the query was rewritten.

Known errors

Notes

Release notes ver SIXP CPP API 1.0.4218

New functionality

Bugfixes
- Fixed reconnect crash when login fails
- Fixed don't request fieldset when requesting news is in text format

Known errors

Notes

Release notes ver SIXP CPP API 1.0.4212

New functionality

Bugfixes
- Fixed reconnect problems occuring during network issues

Known errors

Notes

Release notes ver SIXP CPP API 1.0.4134

New functionality
-

Bugfixes
- Cleaned up some logging

Known errors

Notes
- This build was done primarly to fix a bug with boost in our build system

Release notes ver SIXP CPP API 1.0.4127

New functionality
- Boost 1.54

Bugfixes
- Snapshot_requester can now only be used from callback on_conneced
- Fixed the spam request problem with get requests during reconnect
- Fixed the get request removal after being destroyed

Known errors

Notes

Release notes ver SIXP CPP API 1.0.4034

New functionality

Bugfixes
- Do not put up all subscriptions at once when resubscribing. Wait a little between each subscription.

Known errors

Notes

Release notes ver SIXP CPP API 1.1

New functionality
- Added HTTP proxy support

Bugfixes
- Fixed that ~sample queries did not work due to prl rewrite

Known errors

Notes

Release notes ver SIXP CPP API 1.0

New functionality
+ Added interface documentation

Bugfixes
+ Do not reconnect when the server forces a disconnect

Known errors

Notes

Release notes ver SIXP CPP API 0.2 BETA

New functionality
+ Added errors codes
+ Simplified logging
+ Changed interface names
+ Cleaned up the source code

Bugfixes
+ Fixed a crash when the news articel searched for did not exist

Known errors

Notes