//------------------------------------------------------------------------
bool CPlaylistActivityTracker::UploadData( const char* pUrlPath, const char* pUrlParams, int receiveSize, ERequestTaskType taskType )
{
    CDownloadableResourcePtr newResource = new CDownloadableResource;

    newResource->SetDownloadInfo( pUrlParams, pUrlPath, m_serverNameCVar->GetString(), m_serverPortCVar->GetIVal(), receiveSize, "PlaylistRequest" );
    newResource->AddDataListener( this );
    m_downloadableResources[ taskType ] = newResource;

    return true;
}